Log abort message as error instead of info.
This commit is contained in:
parent
b51aff6182
commit
e28f3ab115
|
@ -508,8 +508,8 @@ def handle_archive (archive, command, *args, **kwargs):
|
|||
else:
|
||||
_handle_archive(archive, command, *args, **kwargs)
|
||||
res = 0
|
||||
except KeyboardInterrupt, msg:
|
||||
util.log_info("aborted")
|
||||
except KeyboardInterrupt:
|
||||
util.log_error("aborted")
|
||||
res = 1
|
||||
except util.PatoolError, msg:
|
||||
util.log_error(msg)
|
||||
|
|
Loading…
Reference in New Issue