Skip to content
Snippets Groups Projects
Commit d28d8ba4 authored by Aurélien Dunand's avatar Aurélien Dunand Committed by Sébastien Luttringer
Browse files

Fix format issue in printer.info()

parent 540be77a
No related branches found
No related tags found
No related merge requests found
...@@ -89,7 +89,7 @@ def warn(message, fd=sys.stderr, endl=os.linesep): ...@@ -89,7 +89,7 @@ def warn(message, fd=sys.stderr, endl=os.linesep):
def info(message, fd=sys.stderr, endl=os.linesep): def info(message, fd=sys.stderr, endl=os.linesep):
if installsystems.verbosity > 0: if installsystems.verbosity > 0:
out("#light#Info%s:#reset# %s" % message, fd, endl) out("#light#Info:#reset# %s" % message, fd, endl)
def debug(message, fd=sys.stderr, endl=os.linesep): def debug(message, fd=sys.stderr, endl=os.linesep):
if installsystems.verbosity > 1: if installsystems.verbosity > 1:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment