Print failure message to standard error
This commit is contained in:
parent
4ad4e28a9c
commit
3fd2f03f11
@ -67,7 +67,7 @@ to output the current clipboard contents to stdout. Note that you must enable re
|
|||||||
sys.stdout.write(handler.clipboard_contents)
|
sys.stdout.write(handler.clipboard_contents)
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
if handler.print_on_fail:
|
if handler.print_on_fail:
|
||||||
print(handler.print_on_fail)
|
print(handler.print_on_fail, file=sys.stderr)
|
||||||
input('Press Enter to quit')
|
input('Press Enter to quit')
|
||||||
raise SystemExit(loop.return_code)
|
raise SystemExit(loop.return_code)
|
||||||
|
|
||||||
|
|||||||
@ -126,7 +126,7 @@ def main(args):
|
|||||||
handler = Resize(args)
|
handler = Resize(args)
|
||||||
loop.loop(handler)
|
loop.loop(handler)
|
||||||
if handler.print_on_fail:
|
if handler.print_on_fail:
|
||||||
print(handler.print_on_fail)
|
print(handler.print_on_fail, file=sys.stderr)
|
||||||
input('Press Enter to quit')
|
input('Press Enter to quit')
|
||||||
raise SystemExit(loop.return_code)
|
raise SystemExit(loop.return_code)
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user