revert: cosmetic align of the dispatch table
This changeset make a minimal cosmetic change to help readability of the value
in this table.
--- 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()):