Handle ServerNotFoundError in callGAPI (#584)

This commit is contained in:
Ross Scroggs
2017-09-16 16:48:17 -07:00
committed by Jay Lee
parent 8f03a3aabb
commit 6be6b2ebde

View File

@@ -722,6 +722,8 @@ def callGAPI(service, function,
systemErrorExit(4, str(e))
except TypeError as e:
systemErrorExit(4, str(e))
except httplib2.ServerNotFoundError as e:
systemErrorExit(4, str(e))
def callGAPIpages(service, function, items,
page_message=None, message_attribute=None,