Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9.2, 1.9.3, and 2.0

patchctx: don't report exec flag changes for newly added files

Changeset f2457a521f79

Parent 9983eeadcd02

by Steve Borho

Changes to one file · Browse files at f2457a521f79 Showing diff from parent 9983eeadcd02 Diff from another changeset...

 
90
91
92
 
 
 
93
94
95
 
90
91
92
93
94
95
96
97
98
@@ -90,6 +90,9 @@
  islink, isexec = gp.mode   if islink:   return 'l' + elif wfile in self._status[1]: + # Do not report exec mode change if file is added + return ''   elif isexec:   return 'x'   else: