revert: cosmetic align of the dispatch table
authorPierre-Yves David <pierre-yves.david@fb.com>
Tue, 13 May 2014 16:29:20 -0700
changeset 21574 404ff404db79
parent 21573 4af19d39706e
child 21575 8262c2a39ab8
revert: cosmetic align of the dispatch table This changeset make a minimal cosmetic change to help readability of the value in this table.
mercurial/cmdutil.py
--- a/mercurial/cmdutil.py	Tue May 13 17:28:19 2014 -0700
+++ b/mercurial/cmdutil.py	Tue May 13 16:29:20 2014 -0700
@@ -2320,10 +2320,10 @@
             #   action if not in target manifest
             #   make backup if in target manifest
             #   make backup if not in target manifest
-            (modified, revert, remove, True, True),
-            (added, revert, remove, True, False),
-            (removed, undelete, None, True, False),
-            (deleted, revert, remove, False, False),
+            (modified, revert,   remove, True,  True),
+            (added,    revert,   remove, True,  False),
+            (removed,  undelete, None,   True,  False),
+            (deleted,  revert,   remove, False, False),
             )
 
         for abs, (rel, exact) in sorted(names.items()):