changeset 2382:b429566d1994

Make indentation of purge's cmdtable match to mercurial/commands.py
author Thomas Arendsen Hein <thomas@intevation.de>
date Fri, 02 Jun 2006 00:33:42 +0200
parents ab7a438294fc
children 74d569332f8b
files hgext/purge/__init__.py
diffstat 1 files changed, 7 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/purge/__init__.py	Fri Jun 02 00:28:28 2006 +0200
+++ b/hgext/purge/__init__.py	Fri Jun 02 00:33:42 2006 +0200
@@ -169,10 +169,11 @@
 
 
 cmdtable = {
-    'purge':    (purge,
-                 [('a', 'abort-on-err', None, _('abort if an error occurs')),
-                  ('p', 'print',        None, _('print the file names instead of deleting them')),
-                  ('0', 'print0',       None, _('end filenames with NUL, for use with xargs (implies -p)')),
-                 ],
-                 _('hg purge [OPTIONS] [DIR]'))
+    'purge':
+        (purge,
+         [('a', 'abort-on-err', None, _('abort if an error occurs')),
+          ('p', 'print', None, _('print the file names instead of deleting them')),
+          ('0', 'print0', None, _('end filenames with NUL, for use with xargs'
+                                  ' (implies -p)'))],
+         _('hg purge [OPTION]... [DIR]...'))
 }