changed argument in openqa_trigger.py

This commit is contained in:
Garret Raziel 2015-01-28 13:58:19 +01:00
parent fe2f200fe1
commit 64e70b8957
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ for current_version, link, name, arch in read_currents():
if match:
from_i = int(match.group('from'))
to_i = int(match.group('to')) + 1
jobs.append(tuple(range(from_i, to_i)))
jobs.extend(range(from_i, to_i))
# write info about latest versions
f = open(PERSISTENT, "w")