Minor fix

This commit is contained in:
Bernardo Damele 2010-12-09 00:25:48 +00:00
parent 3b293c4ea7
commit b5c6527c72

View File

@ -382,7 +382,7 @@ def getValue(expression, blind=True, inband=True, error=True, time=True, fromUse
try: try:
if conf.direct: if conf.direct:
value = direct(expression) value = direct(expression)
elif kb.booleanTest is not None or kb.errorTest is not None or kb.unionTest is not None or kb.timeTest is not None: elif kb.booleanTest is not None or kb.errorTest is not None or kb.unionTest is not None or kb.timeTest is not None or kb.stackedTest is not None:
expression = cleanQuery(expression) expression = cleanQuery(expression)
expression = expandAsteriskForColumns(expression) expression = expandAsteriskForColumns(expression)
value = None value = None