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

Fix #172
pull/178/head
Ozzie Isaacs 7 years ago committed by GitHub
commit 24cf550be4

@ -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

Loading…
Cancel
Save