daca2-search.cgi: Use compound assignment

This commit is contained in:
Daniel Marjamäki 2018-05-08 06:41:05 +02:00
parent 8b0b659965
commit 6ed3c130e7
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ def summary(path, arguments):
continue continue
id = res.group(2) id = res.group(2)
if id in count: if id in count:
count[id] = count[id] + 1 count[id] += 1
else: else:
count[id] = 1 count[id] = 1
print('<table>') print('<table>')