Commit 24cf550b authored by Ozzie Isaacs's avatar Ozzie Isaacs Committed by GitHub

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

Fix #172
parents fb43110f 622b1435
......@@ -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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment