Merge "Fix index in counter"

This commit is contained in:
Zuul 2019-09-03 06:33:27 +00:00 committed by Gerrit Code Review
commit 4001ad16c8
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ class EventsCoordination(object):
index = 0
if events is None:
events = []
for index, e in enumerate(events):
for index, e in enumerate(events, 1):
self._do_low_priority_work(e)
return index