Remove extra whitespace

This commit is contained in:
Jeffrey S. Smith 2013-09-08 08:17:14 -05:00
parent c45d225b9d
commit afb8f088a6
1 changed files with 2 additions and 2 deletions

View File

@ -145,9 +145,9 @@ def print_quiet(text, linefeed=True):
global quiet_mode
if not quiet_mode:
if linefeed:
print (text)
print(text)
else:
print (text, end=' ')
print(text, end=' ')
def print_verbose(text):
"""