From ad471368f5e55abda6d119bfa15b697d3194a243 Mon Sep 17 00:00:00 2001 From: stamparm Date: Fri, 22 Feb 2013 11:42:09 +0100 Subject: [PATCH] Fixing a display bug (cases where messages are just appended after the readInput line in batch mode) introduced with b472d9809a86c3f431929399a2beeb6cd78b6cb5 --- lib/core/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/common.py b/lib/core/common.py index 153750fa8..f14ebf58b 100644 --- a/lib/core/common.py +++ b/lib/core/common.py @@ -857,7 +857,7 @@ def readInput(message, default=None, checkBatch=True): else: options = unicode() - dataToStdout("\r%s%s" % (getUnicode(message), options), forceOutput=True, bold=True) + dataToStdout("\r%s%s\n" % (getUnicode(message), options), forceOutput=True, bold=True) debugMsg = "used the default behaviour, running in batch mode" logger.debug(debugMsg)