fix typo
This commit is contained in:
parent
425cd528a1
commit
1d69126589
1 changed files with 1 additions and 1 deletions
|
|
@ -609,7 +609,7 @@ def make_task(method, arglist, **opts):
|
|||
elif parts[0] == 'increment' and parts[1] == 'by':
|
||||
opts['priority'] += int(parts[2])
|
||||
elif parts[0] == 'decrement' and parts[1] == 'by':
|
||||
opts['priority'] += int(parts[2])
|
||||
opts['priority'] -= int(parts[2])
|
||||
else:
|
||||
logger.error("Invalid result from priority policy: %s", ruleset.last_rule())
|
||||
raise koji.GenericError("invalid priority policy")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue