hgext/largefiles/lfcommands.py
branchstable
changeset 15332 0db47b8d025f
parent 15317 41f371150ccb
child 15339 be1377d19018
--- a/hgext/largefiles/lfcommands.py	Thu Oct 20 22:01:05 2011 -0400
+++ b/hgext/largefiles/lfcommands.py	Thu Oct 20 21:56:30 2011 -0400
@@ -35,10 +35,10 @@
     largefiles is enabled anywhere you intend to push the new
     repository.
 
-    Use --tonormal to convert largefiles back to normal files; after
+    Use --to-normal to convert largefiles back to normal files; after
     this, the DEST repository can be used without largefiles at all.'''
 
-    if opts['tonormal']:
+    if opts['to_normal']:
         tolfile = False
     else:
         tolfile = True
@@ -477,7 +477,7 @@
                     _('minimum size (MB) for files to be converted '
                       'as largefiles'),
                     'SIZE'),
-                  ('', 'tonormal', False,
+                  ('', 'to-normal', False,
                    _('convert from a largefiles repo to a normal repo')),
                   ],
                   _('hg lfconvert SOURCE DEST [FILE ...]')),