This commit is contained in:
林檎 2017-04-06 22:50:05 +08:00
parent fb43110f1c
commit 622b1435f1
1 changed files with 1 additions and 1 deletions

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