fixed small bug in error reporting (missing column head complaint was broken...)
This commit is contained in:
parent
d971a32516
commit
b572c71db0
|
@ -96,7 +96,7 @@ for file in files:
|
||||||
's#':'str'}[operand[1]],
|
's#':'str'}[operand[1]],
|
||||||
table.labels.index(operand[2]))]
|
table.labels.index(operand[2]))]
|
||||||
except:
|
except:
|
||||||
parser.error('column %s not found...\n'%operand)
|
parser.error('column %s not found...\n'%operand[2])
|
||||||
|
|
||||||
evaluator = "'" + options.condition + "'.format(" + ','.join(interpolator) + ")"
|
evaluator = "'" + options.condition + "'.format(" + ','.join(interpolator) + ")"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue