Add newline after dbg(message) output

This commit is contained in:
Michael Hohn
2021-12-18 14:19:38 -08:00
committed by =Michael Hohn
parent 291726dd58
commit 9590d0a677

View File

@@ -174,5 +174,5 @@ def msg(message):
def dbg(message):
""" Print message to stderr """
sys.stdout.flush()
sys.stderr.write("warning: %s" % message)
sys.stderr.write("warning: %s\n" % message)
sys.stderr.flush()