Handle bad data from Google in gam report customer (#450)

This commit is contained in:
Ross Scroggs
2017-03-22 08:12:22 -07:00
committed by Jay Lee
parent 08bd3ecc91
commit 6f6a94c9b0

View File

@ -978,6 +978,8 @@ def showReport():
csvRows = []
auth_apps = list()
for item in usage[0][u'parameters']:
if u'name' not in item:
continue
name = item[u'name']
try:
value = item[u'intValue']