minor update (that default quit in --batch was bothering me - my original idea and it was bad :)

This commit is contained in:
Miroslav Stampar
2011-06-27 14:14:49 +00:00
parent ed4cfbb6d2
commit 8a8b94883b
2 changed files with 11 additions and 14 deletions

View File

@@ -742,7 +742,7 @@ def strToHex(inpStr):
return hexStr
def readInput(message, default=None):
def readInput(message, default=None, checkBatch=True):
"""
@param message: message to display on terminal.
@type message: C{str}
@@ -758,7 +758,7 @@ def readInput(message, default=None):
message = "\r%s" % message
if conf.batch:
if checkBatch and conf.batch:
if isinstance(default, (list, tuple, set)):
options = ",".join([getUnicode(opt, UNICODE_ENCODING) for opt in default])
elif default: