ui.warn can use more than one argument like the other ui methods.
authorThomas Arendsen Hein <thomas@intevation.de>
Thu, 02 Jun 2005 07:06:29 +0100
changeset 234 3427806d5ab9
parent 233 33c48b635690
child 235 eb341488aa4c
ui.warn can use more than one argument like the other ui methods.
mercurial/ui.py
--- a/mercurial/ui.py	Thu Jun 02 07:05:56 2005 +0100
+++ b/mercurial/ui.py	Thu Jun 02 07:06:29 2005 +0100
@@ -30,7 +30,7 @@
                 self.write("unrecognized response\n")
     def status(self, *msg):
         if not self.quiet: self.write(*msg)
-    def warn(self, msg):
+    def warn(self, *msg):
         self.write(*msg)
     def note(self, *msg):
         if self.verbose: self.write(*msg)