changed error catch to Exception

This commit is contained in:
John Dickinson 2012-01-17 10:46:56 -06:00
parent feab1eb1c7
commit 0e787ed8a8
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ class LogUploader(Daemon):
continue
try:
self.upload_one_log(filename, **match)
except (OSError, zlib.error, IOError):
except Exception:
self.logger.exception(
_('ERROR: could not upload %s') % filename)