better language

This commit is contained in:
Miroslav Stampar 2011-06-01 08:30:06 +00:00
parent 63145236b9
commit 091c174bc4
2 changed files with 4 additions and 4 deletions

View File

@ -319,8 +319,8 @@ def errorUse(expression, expected=None, resumeValue=True, dump=False):
try: try:
if stopLimit > TURN_OFF_RESUME_INFO_LIMIT: if stopLimit > TURN_OFF_RESUME_INFO_LIMIT:
kb.suppressResumeInfo = True kb.suppressResumeInfo = True
infoMsg = "suppressing resume console info because of " infoMsg = "suppressing possible resume console info because of "
infoMsg += "large number of rows (possible slowdown)" infoMsg += "large number of rows (might take too much time)"
logger.info(infoMsg) logger.info(infoMsg)
lockNames = ('limits', 'outputs') lockNames = ('limits', 'outputs')

View File

@ -259,8 +259,8 @@ def unionUse(expression, unpack=True, dump=False):
try: try:
if stopLimit > TURN_OFF_RESUME_INFO_LIMIT: if stopLimit > TURN_OFF_RESUME_INFO_LIMIT:
kb.suppressResumeInfo = True kb.suppressResumeInfo = True
infoMsg = "suppressing resume console info because of " infoMsg = "suppressing possible resume console info because of "
infoMsg += "large number of rows (possible slowdown)" infoMsg += "large number of rows (might take too much time)"
logger.info(infoMsg) logger.info(infoMsg)
lockNames = ('limits', 'value') lockNames = ('limits', 'value')