daca2-search.cgi: Use compound assignment
This commit is contained in:
parent
8b0b659965
commit
6ed3c130e7
|
@ -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>')
|
||||||
|
|
Loading…
Reference in New Issue