comparison hgext/largefiles/uisetup.py @ 15627:9d7a83a42f8c

largefiles: fix indentation
author Martin Geisler <mg@aragost.com>
date Fri, 09 Dec 2011 17:34:56 +0100
parents 155d0f8fb7e5
children 7b7f03502b5a
comparison
equal deleted inserted replaced
15626:931dc4af0d95 15627:9d7a83a42f8c
21 # files in the result are under Mercurial's control 21 # files in the result are under Mercurial's control
22 22
23 entry = extensions.wrapcommand(commands.table, 'add', 23 entry = extensions.wrapcommand(commands.table, 'add',
24 overrides.override_add) 24 overrides.override_add)
25 addopt = [('', 'large', None, _('add as largefile')), 25 addopt = [('', 'large', None, _('add as largefile')),
26 ('', 'lfsize', '', _('add all files above this size (in megabytes) ' 26 ('', 'lfsize', '', _('add all files above this size '
27 'as largefiles (default: 10)'))] 27 '(in megabytes) as largefiles '
28 '(default: 10)'))]
28 entry[1].extend(addopt) 29 entry[1].extend(addopt)
29 30
30 entry = extensions.wrapcommand(commands.table, 'addremove', 31 entry = extensions.wrapcommand(commands.table, 'addremove',
31 overrides.override_addremove) 32 overrides.override_addremove)
32 entry = extensions.wrapcommand(commands.table, 'remove', 33 entry = extensions.wrapcommand(commands.table, 'remove',