--- 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]...'))
}