allow Falsy values too
This commit is contained in:
parent
af0c487a85
commit
f8464a1f32
1 changed files with 1 additions and 1 deletions
|
|
@ -11875,7 +11875,7 @@ class RootExports(object):
|
|||
# Backwards-compatible with the removed options
|
||||
for k, v in kwargs.items():
|
||||
if k in ('stops', 'jumps'):
|
||||
if v is not None:
|
||||
if v:
|
||||
raise koji.ParameterError("%s option has been removed since 1.26" % k)
|
||||
else:
|
||||
raise koji.ParameterError(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue