mercurial/commands.py
changeset 2293 3dc6f2501dbc
parent 2287 3f18d1eea370
child 2299 dacf718e1d48
--- a/mercurial/commands.py	Mon May 15 10:25:17 2006 -0700
+++ b/mercurial/commands.py	Mon May 15 11:16:32 2006 -0700
@@ -3136,6 +3136,7 @@
      _('do not prompt, assume \'yes\' for any required answers')),
     ('q', 'quiet', None, _('suppress output')),
     ('v', 'verbose', None, _('enable additional output')),
+    ('', 'config', [], _('set/override config option')),
     ('', 'debug', None, _('enable debugging output')),
     ('', 'debugger', None, _('start debugger')),
     ('', 'traceback', None, _('print traceback on exception')),
@@ -3300,7 +3301,8 @@
             atexit.register(print_time)
 
         u.updateopts(options["verbose"], options["debug"], options["quiet"],
-                     not options["noninteractive"], options["traceback"])
+                     not options["noninteractive"], options["traceback"],
+                     options["config"])
 
         # enter the debugger before command execution
         if options['debugger']: