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

status: subrepos are not reported by localrepo.status()

Changeset b729a645cf1e

Parent 5c4e640895d8

by Steve Borho

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

 
213
214
215
 
 
216
217
218
 
213
214
215
216
217
218
219
220
@@ -213,6 +213,8 @@
  status = self.repo.status(match=m, **stopts)   # Record all matched files as initially checked   for i, stat in enumerate(StatusType.preferredOrder): + if stat == 'S': + continue   val = statusTypes[stat]   if self.opts[val.name]:   d = dict([(fn, True) for fn in status[i]])