Minor code refactoring

This commit is contained in:
Bernardo Damele
2010-06-28 13:47:20 +00:00
parent 9ea72f9640
commit 7cad3cbda6
2 changed files with 4 additions and 4 deletions

View File

@@ -1221,10 +1221,10 @@ def initCommonOutputs():
key = line[1:-1]
elif key:
if key not in kb.commonOutputs:
kb.commonOutputs[key] = []
kb.commonOutputs[key] = set()
if line not in kb.commonOutputs[key]:
kb.commonOutputs[key].append(line)
kb.commonOutputs[key].add(line)
cfile.close()