hgext/fetch.py
changeset 4730 eadfaa9ec487
parent 4549 0c61124ad877
child 4915 97b734fb9c6f
--- a/hgext/fetch.py	Tue Jun 26 20:37:15 2007 +0200
+++ b/hgext/fetch.py	Tue Jun 26 22:38:57 2007 +0200
@@ -85,14 +85,14 @@
 
 cmdtable = {
     'fetch':
-    (fetch,
-     [('e', 'ssh', '', _('specify ssh command to use')),
-      ('m', 'message', '', _('use <text> as commit message')),
-      ('l', 'logfile', '', _('read the commit message from <file>')),
-      ('d', 'date', '', _('record datecode as commit date')),
-      ('u', 'user', '', _('record user as commiter')),
-      ('r', 'rev', [], _('a specific revision you would like to pull')),
-      ('f', 'force-editor', None, _('edit commit message')),
-      ('', 'remotecmd', '', _('hg command to run on the remote side'))],
-     'hg fetch [SOURCE]'),
-    }
+        (fetch,
+        [('e', 'ssh', '', _('specify ssh command to use')),
+         ('m', 'message', '', _('use <text> as commit message')),
+         ('l', 'logfile', '', _('read the commit message from <file>')),
+         ('d', 'date', '', _('record datecode as commit date')),
+         ('u', 'user', '', _('record user as commiter')),
+         ('r', 'rev', [], _('a specific revision you would like to pull')),
+         ('f', 'force-editor', None, _('edit commit message')),
+         ('', 'remotecmd', '', _('hg command to run on the remote side'))],
+        _('hg fetch [SOURCE]')),
+}