From 0bdf74f0b27b5dd9fc13c1e53a0826cbae5c7206 Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Wed, 10 Sep 2008 11:14:38 -0400 Subject: sys.stderr.write needs a newline. --- scripts/makestamp.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts/makestamp.py') diff --git a/scripts/makestamp.py b/scripts/makestamp.py index 43ad12798..0638c6dee 100755 --- a/scripts/makestamp.py +++ b/scripts/makestamp.py @@ -57,13 +57,13 @@ for (str, arg) in args: usage() if data["timestamp"] is None: - sys.stderr.write("timestamp not specified; using the current time") + sys.stderr.write("timestamp not specified; using the current time\n") data["timestamp"] = time.time() else: data["timestamp"] = float(data["timestamp"]) if data["releasestr"] is None: - print("What should be the release name associated with this disc?") + print("What should be the release name associated with this disc?\n") data["releasestr"] = sys.stdin.readline()[:-1] if data["arch"] is None: @@ -71,7 +71,7 @@ if data["arch"] is None: data["arch"] = sys.stdin.readline()[:-1] if data["discNum"] is None and allDiscs is None: - sys.stderr.write("No disc number specified; assuming disc 1") + sys.stderr.write("No disc number specified; assuming disc 1\n") data["discNum"] = "1" if data["outfile"] is None: -- cgit