Skip to content

Commit

Permalink
Newlines at the end of stderr messages
Browse files Browse the repository at this point in the history
  • Loading branch information
richo committed Sep 24, 2011
1 parent 05597b3 commit 095cb46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logging.py
Expand Up @@ -33,7 +33,7 @@ def fixme(msg):

def fatal(msg):
log("F: %s" % fmt(msg))
sys.stderr.write(fmt(msg))
sys.stderr.write(fmt(msg) + "\n")
exit(1)

class Writer(object):
Expand Down

0 comments on commit 095cb46

Please sign in to comment.