From e2cf65d3994565f6dafc87ab8a10611d1f0cf520 Mon Sep 17 00:00:00 2001 From: Nikos Skalkotos Date: Tue, 20 Mar 2012 19:08:08 +0200 Subject: [PATCH 1/1] Add new-line printing option in printing functions --- image_creator/util.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/image_creator/util.py b/image_creator/util.py index bb57b5f..a0d44ba 100644 --- a/image_creator/util.py +++ b/image_creator/util.py @@ -49,16 +49,16 @@ def get_command(command): return find_sbin_command(command, e) -def error(msg): - puts_err(colored.red("Error: %s\n" % msg)) +def error(msg, new_line=True): + puts_err(colored.red("Error: %s\n" % msg), new_line) -def warn(msg): - puts_err(colored.yellow("Warning: %s" % msg)) +def warn(msg, new_line=True): + puts_err(colored.yellow("Warning: %s" % msg), new_line) -def success(msg): - puts(colored.green(msg)) +def success(msg, new_line=True): + puts(colored.green(msg), new_line) def progress_generator(label='', n=100): -- 1.7.10.4