Log abort message as error instead of info.

This commit is contained in:
Bastian Kleineidam 2012-05-11 19:32:16 +02:00
parent b51aff6182
commit e28f3ab115
1 changed files with 2 additions and 2 deletions

View File

@ -508,8 +508,8 @@ def handle_archive (archive, command, *args, **kwargs):
else: else:
_handle_archive(archive, command, *args, **kwargs) _handle_archive(archive, command, *args, **kwargs)
res = 0 res = 0
except KeyboardInterrupt, msg: except KeyboardInterrupt:
util.log_info("aborted") util.log_error("aborted")
res = 1 res = 1
except util.PatoolError, msg: except util.PatoolError, msg:
util.log_error(msg) util.log_error(msg)