mercurial/localrepo.py
changeset 13412 58c497d0e44d
parent 13411 d4de90a612f7
child 13446 1e497df514e2
--- a/mercurial/localrepo.py	Tue Feb 15 22:25:48 2011 +0100
+++ b/mercurial/localrepo.py	Thu Feb 03 10:31:17 2011 +0100
@@ -1242,7 +1242,8 @@
                     self.ui.status(_("skipping missing subrepository: %s\n")
                                    % subpath)
 
-        [l.sort() for l in r]
+        for l in r:
+            l.sort()
         return r
 
     def heads(self, start=None):