Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

thgstatus: mark directories with missing files as 'removed'

(transplant from crew 458ac68f829d)

Changeset 5d2d4b03b565

Parent b81d052cabc1

by Adrian Buehlmann

Changes to one file · Browse files at 5d2d4b03b565 Showing diff from parent b81d052cabc1 Diff from another changeset...

 
82
83
84
85
 
86
87
88
 
82
83
84
 
85
86
87
88
@@ -82,7 +82,7 @@
  dirstatus[dirname(fn)] = 'a'   for fn in modified:   dirstatus[dirname(fn)] = 'm' - for fn in removed: + for fn in removed + deleted:   dirstatus[dirname(fn)] = 'r'   f = open(cachefilepath(repo), 'wb')   for dn in sorted(dirstatus):