inverted logic; caught in testing code

This commit is contained in:
Martin A. Brown 2016-03-01 13:36:09 -08:00
parent 9721214e12
commit ae89d6814a
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ def getDocumentClasses(args):
sought.append(cls)
else:
sought.append(None)
remainder = set([y for x, y in zip(sought, args) if x])
remainder = set([y for x, y in zip(sought, args) if not x])
sought = set(filter(None, sought))
return sought, remainder