comparison hgext/purge.py @ 8761:0289f384e1e5

Generally replace "file name" with "filename" in help and comments.
author timeless <timeless@gmail.com>
date Tue, 09 Jun 2009 09:25:17 -0400
parents 7af21dfae9d5
children 87c30fb7e8df
comparison
equal deleted inserted replaced
8760:bf17aeafb869 8761:0289f384e1e5
100 cmdtable = { 100 cmdtable = {
101 'purge|clean': 101 'purge|clean':
102 (purge, 102 (purge,
103 [('a', 'abort-on-err', None, _('abort if an error occurs')), 103 [('a', 'abort-on-err', None, _('abort if an error occurs')),
104 ('', 'all', None, _('purge ignored files too')), 104 ('', 'all', None, _('purge ignored files too')),
105 ('p', 'print', None, _('print the file names instead of deleting them')), 105 ('p', 'print', None, _('print filenames instead of deleting them')),
106 ('0', 'print0', None, _('end filenames with NUL, for use with xargs' 106 ('0', 'print0', None, _('end filenames with NUL, for use with xargs'
107 ' (implies -p/--print)')), 107 ' (implies -p/--print)')),
108 ] + commands.walkopts, 108 ] + commands.walkopts,
109 _('hg purge [OPTION]... [DIR]...')) 109 _('hg purge [OPTION]... [DIR]...'))
110 } 110 }