diff mercurial/localrepo.py @ 11228:5cdac5c35e68

Merge with stable
author Matt Mackall <mpm@selenic.com>
date Fri, 28 May 2010 16:01:57 -0500
parents e43c23d189a5 054549ccb680
children 5116a077c3da
line wrap: on
line diff
--- a/mercurial/localrepo.py	Thu May 27 10:37:14 2010 +0200
+++ b/mercurial/localrepo.py	Fri May 28 16:01:57 2010 -0500
@@ -1041,7 +1041,9 @@
             match.bad = bad
 
         if working: # we need to scan the working dir
-            subrepos = ctx1.substate.keys()
+            subrepos = []
+            if '.hgsub' in self.dirstate:
+                subrepos = ctx1.substate.keys()
             s = self.dirstate.status(match, subrepos, listignored,
                                      listclean, listunknown)
             cmp, modified, added, removed, deleted, unknown, ignored, clean = s