--- a/mercurial/commands.py Tue Jun 28 02:18:23 2005 -0800
+++ b/mercurial/commands.py Tue Jun 28 02:22:45 2005 -0800
@@ -312,7 +312,7 @@
f.write("[paths]\n")
f.write("default = %s\n" % source)
- if not opts['no-update']:
+ if not opts['noupdate']:
update(ui, repo)
success = True
@@ -739,7 +739,7 @@
('c', 'changeset', None, 'show changeset')],
'hg annotate [-u] [-c] [-n] [-r id] [files]'),
"cat": (cat, [], 'hg cat <file> [rev]'),
- "clone": (clone, [('U', 'no-update', None, 'skip update after cloning')],
+ "clone": (clone, [('U', 'noupdate', None, 'skip update after cloning')],
'hg clone [options] <source> [dest]'),
"commit|ci": (commit,
[('t', 'text', "", 'commit text'),