Mercurial > public > mercurial-scm > hg-stable
diff mercurial/ui.py @ 234:3427806d5ab9
ui.warn can use more than one argument like the other ui methods.
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Thu, 02 Jun 2005 07:06:29 +0100 |
parents | ec327cf0d3a9 |
children | 4f802588cdfb |
line wrap: on
line diff
--- 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)