1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-12-24 00:56:15 +01:00

- do_submitrequest: use continue to start next loop iteration (instead of "next"...)

This commit is contained in:
Marcus Huewe 2014-04-28 15:09:29 +02:00
parent c398cb344a
commit 5e22cd3f4f

View File

@ -1060,10 +1060,10 @@ class Osc(cmdln.Cmdln):
print("Submitting package ", p)
else:
print(" Skipping not modified package ", p)
next
continue
else:
print("Skipping package ", p, " since it is a source link pointing inside the project.")
next
continue
serviceinfo = root.find('serviceinfo')
if serviceinfo != None: