hgext/largefiles/lfcommands.py
changeset 21785 a730b002c5db
parent 21770 15d434bee41c
child 21932 21a2f31f054d
--- 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