.items
-> .items()
This commit is contained in:
parent
957b5413dc
commit
993403f213
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ class Module(ModuleManager.BaseModule):
|
|||
|
||||
score = len(reasons)
|
||||
reasons_s = []
|
||||
for reason, count in collections.Counter(reasons).items:
|
||||
for reason, count in collections.Counter(reasons).items():
|
||||
reasons_s.append("%s: %s" % (reason, count))
|
||||
|
||||
if score > 0:
|
||||
|
|
Loading…
Reference in a new issue