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:
_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)