daca2-report: fix checking for positives

This commit is contained in:
Daniel Marjamäki 2018-06-29 11:16:08 +02:00
parent 2d00be7a9a
commit 0ba23c28bf
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ def diffResults(reportpath):
f.close()
f = open(reportpath + 'positives.txt', 'wt')
s, count_positives = getUnique(warnings_base, warnings_head)
s, count_positives = getUnique(warnings_head, warnings_base)
f.write(s)
f.close()