Fixing a display bug (cases where messages are just appended after the readInput line in batch mode) introduced with b472d9809a

This commit is contained in:
stamparm 2013-02-22 11:42:09 +01:00
parent 0bbbfc2eac
commit ad471368f5

View File

@ -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)