diff mercurial/ui.py @ 8137:7fd0616b3d80

ui: kill updateopts Move setconfig into dispatch._parseconfig
author Matt Mackall <mpm@selenic.com>
date Thu, 23 Apr 2009 15:40:10 -0500
parents 6b5522cb2ad2
children 0ffb8f791b7c
line wrap: on
line diff
--- a/mercurial/ui.py	Thu Apr 23 15:40:10 2009 -0500
+++ b/mercurial/ui.py	Thu Apr 23 15:40:10 2009 -0500
@@ -66,10 +66,6 @@
                 ui._isatty = False
         return ui._isatty
 
-    def updateopts(self, config):
-        for section, name, value in config:
-            self.setconfig(section, name, value)
-
     def verbosity_constraints(self):
         self.quiet = self.configbool('ui', 'quiet')
         self.verbose = self.configbool('ui', 'verbose')