@@ -50,7 +50,8 @@ def getFilter(xconfig):
for f in fields:
try:
row[f]=xconfig[f]
- qfilter.append(fields[f](row,xconfig))
+ if xconfig[f]!='NONE':
+ qfilter.append(fields[f](row,xconfig))
except KeyError:
continue
return qfilter