# HG changeset patch # User Thomas Arendsen Hein # Date 1149201222 -7200 # Node ID b429566d1994787266f34886dbe1c20b116dc9a3 # Parent ab7a438294fc334bcb9f7913ed7c92ce82d0278f Make indentation of purge's cmdtable match to mercurial/commands.py diff -r ab7a438294fc -r b429566d1994 hgext/purge/__init__.py --- 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]...')) }