changeset 110:8fffec9ec750

quick fix for executable bit settings
author Scott Chacon <schacon@gmail.com>
date Sun, 10 May 2009 21:20:51 -0700
parents 8eb8d9e3b637
children c00bee6c5de7
files TODO.txt git_handler.py
diffstat 2 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/TODO.txt	Sun May 10 16:11:19 2009 -0700
+++ b/TODO.txt	Sun May 10 21:20:51 2009 -0700
@@ -28,7 +28,6 @@
 
 Created in Git:
 * encoding field / utf-8
-* respect modes on tree write
 * octopus merge explode/implode
 
 WEBSITE
--- a/git_handler.py	Sun May 10 16:11:19 2009 -0700
+++ b/git_handler.py	Sun May 10 21:20:51 2009 -0700
@@ -481,7 +481,7 @@
         convert = {
          33188: '',
          40960: 'l',
-         33261: 'e'}
+         33261: 'x'}
         if mode in convert:
             return convert[mode]
         return ''