mercurial/debugcommands.py
changeset 42926 34ed651ba7e4
parent 42894 38392d5bde8e
child 43041 559ac8411f12
--- a/mercurial/debugcommands.py	Sun Sep 08 20:26:36 2019 -0400
+++ b/mercurial/debugcommands.py	Tue Sep 10 09:41:58 2019 -0400
@@ -751,7 +751,7 @@
         keyfunc = lambda x: (x[1][3], x[0]) # sort by mtime, then by filename
     else:
         keyfunc = None # sort by filename
-    for file_, ent in sorted(repo.dirstate._map.iteritems(), key=keyfunc):
+    for file_, ent in sorted(repo.dirstate.iteritems(), key=keyfunc):
         if ent[3] == -1:
             timestr = 'unset               '
         elif nodates: