Mercurial > public > mercurial-scm > hg
diff hgext/largefiles/lfcommands.py @ 21785:a730b002c5db
largefiles: define inferrepo in command decorator
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Sun, 04 May 2014 22:23:45 -0700 |
parents | 15d434bee41c |
children | 21a2f31f054d |
line wrap: on
line diff
--- a/hgext/largefiles/lfcommands.py Sun May 04 22:32:15 2014 -0700 +++ b/hgext/largefiles/lfcommands.py Sun May 04 22:23:45 2014 -0700 @@ -24,8 +24,6 @@ cmdtable = {} command = cmdutil.command(cmdtable) -commands.inferrepo += " lfconvert" - @command('lfconvert', [('s', 'size', '', _('minimum size (MB) for files to be converted as largefiles'), 'SIZE'), @@ -33,7 +31,8 @@ _('convert from a largefiles repo to a normal repo')), ], _('hg lfconvert SOURCE DEST [FILE ...]'), - norepo=True) + norepo=True, + inferrepo=True) def lfconvert(ui, src, dest, *pats, **opts): '''convert a normal repository to a largefiles repository