From: Nikos Skalkotos Date: Tue, 20 Mar 2012 17:08:08 +0000 (+0200) Subject: Add new-line printing option in printing functions X-Git-Tag: v0.1~127 X-Git-Url: https://code.grnet.gr/git/snf-image-creator/commitdiff_plain/e2cf65d3994565f6dafc87ab8a10611d1f0cf520?ds=sidebyside Add new-line printing option in printing functions --- 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):