mercurial/commands.py
changeset 22594 1257cc6c1a2f
parent 22593 ec47d4fde26d
child 22617 1625770c2ce1
--- a/mercurial/commands.py	Tue Sep 30 15:21:35 2014 -0700
+++ b/mercurial/commands.py	Tue Sep 30 16:01:19 2014 -0700
@@ -3219,8 +3219,9 @@
     fmt = '%s' + end
 
     m = scmutil.match(ctx, pats, opts)
+    ds = repo.dirstate
     for f in ctx.matches(m):
-        if rev is None and repo.dirstate[f] == 'r':
+        if rev is None and ds[f] == 'r':
             continue
         fm.startitem()
         if ui.verbose: