1
0
mirror of https://github.com/janeczku/calibre-web synced 2024-11-24 18:47:23 +00:00
This commit is contained in:
林檎 2017-04-06 22:50:05 +08:00
parent fb43110f1c
commit 622b1435f1

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