Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/pr/172'
Browse files Browse the repository at this point in the history
* origin/pr/172:
  Print & log argument errors instead of just logging
  • Loading branch information
marmarek committed Nov 15, 2024
2 parents bacb8f5 + e5ab832 commit b2d0281
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions vmupdate/vmupdate.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ def main(args=None, app=qubesadmin.Qubes()):
try:
targets = get_targets(args, app)
except ArgumentError as err:
print(str(err), file=sys.stderr)
log.error(str(err))
return EXIT.ERR_USAGE

Expand Down

0 comments on commit b2d0281

Please sign in to comment.