1
0
mirror of https://github.com/janeczku/calibre-web synced 2024-10-01 16:30:48 +00:00

Merge pull request #173 from Kennyl/fix/python3-20170406

Fix #172
This commit is contained in:
Ozzie Isaacs 2017-04-06 19:48:22 +02:00 committed by GitHub
commit 24cf550be4

View File

@ -362,6 +362,6 @@ def getChangeById (drive, change_id):
try:
change = drive.auth.service.changes().get(changeId=change_id).execute()
return change
except errors.HttpError, error:
except (errors.HttpError, error):
web.app.logger.exception(error)
return None