mirror of
https://pagure.io/fedora-qa/createhdds.git
synced 2024-11-24 16:03:07 +00:00
changed argument in openqa_trigger.py
This commit is contained in:
parent
fe2f200fe1
commit
64e70b8957
@ -64,7 +64,7 @@ for current_version, link, name, arch in read_currents():
|
|||||||
if match:
|
if match:
|
||||||
from_i = int(match.group('from'))
|
from_i = int(match.group('from'))
|
||||||
to_i = int(match.group('to')) + 1
|
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
|
# write info about latest versions
|
||||||
f = open(PERSISTENT, "w")
|
f = open(PERSISTENT, "w")
|
||||||
|
Loading…
Reference in New Issue
Block a user