mercurial/cmdutil.py
changeset 38648 ffd08ec22955
parent 38576 152f4822d210
child 38667 572dff5c946e
--- a/mercurial/cmdutil.py	Wed Jul 11 13:48:44 2018 +0200
+++ b/mercurial/cmdutil.py	Wed Jul 11 21:15:52 2018 +0900
@@ -1879,13 +1879,14 @@
     yielding each context, the iterator will first call the prepare
     function on each context in the window in forward order.'''
 
-    allfiles = opts.get('allfiles')
+    allfiles = opts.get('all_files')
     follow = opts.get('follow') or opts.get('follow_first')
     revs = _walkrevs(repo, opts)
     if not revs:
         return []
     if allfiles and len(revs) > 1:
-        raise error.Abort(_("multiple revisions not supported with --allfiles"))
+        raise error.Abort(_("multiple revisions not supported with "
+                            "--all-files"))
     wanted = set()
     slowpath = match.anypats() or (not match.always() and opts.get('removed'))
     fncache = {}