Skip to content

Commit 50fef48

Browse files
committed
q-dev: print "Error:" before error message
1 parent c5441df commit 50fef48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

qubesadmin/tools/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -445,8 +445,8 @@ def set_qubes_verbosity(namespace):
445445
qubesadmin.log.enable()
446446

447447
def print_error(self, *args, **kwargs):
448-
''' Print to ``sys.stderr``'''
449-
print(*args, file=sys.stderr, **kwargs)
448+
""" Print to ``sys.stderr``"""
449+
print("Error:", *args, file=sys.stderr, **kwargs)
450450

451451

452452
class SubParsersHelpAction(argparse._HelpAction):

0 commit comments

Comments
 (0)