commit 72358fbc20c36e4e268d247bded4a97826e4e966 parent d6edf45eb780da14595525539ccaf8edec0b8012 Author: ThomasV <thomasv@gitorious> Date: Fri, 23 Nov 2012 19:11:16 +0100 do not display args as tuple Diffstat:
M | lib/util.py | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/util.py b/lib/util.py @@ -9,7 +9,7 @@ def set_verbosity(b): def print_error(*args): if not is_verbose: return - print_msg(args) + print_msg(*args) def print_msg(*args): # Stringify args