Skip to content

Commit

Permalink
Merge branch 'fix-sr-yes' of https://github.com/srinidhibs/osc
Browse files Browse the repository at this point in the history
Add missing check for opts.yes to do_submitrequest.
  • Loading branch information
marcus-h committed Feb 22, 2017
2 parents 74e397b + b2b59ca commit 8c82243
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osc/commandline.py
Expand Up @@ -1334,7 +1334,7 @@ def _check_service(root):
return
supersede_existing = False
reqs = []
if not opts.supersede:
if not opts.supersede and not opts.yes:
(supersede_existing, reqs) = check_existing_requests(apiurl,
src_project,
src_package,
Expand Down

0 comments on commit 8c82243

Please sign in to comment.