diff --git a/osc/commandline.py b/osc/commandline.py index 48638ed6..5ac92f0b 100644 --- a/osc/commandline.py +++ b/osc/commandline.py @@ -1755,7 +1755,13 @@ Please submit there instead, or use --nodevelproject to force direct submission. ## FIXME: date filtering should become implemented on server side for result in results: if days == 0 or result.state.when > since or result.state.name == 'new': - print result.list_view() + if (opts.interactive or conf.config['request_show_interactive']) and not opts.non_interactive: + try: + request_interactive_review(apiurl, result) + except oscerr.UserAbort: + pass + else: + print result.list_view() else: skipped += 1 if skipped: