atlas-g0d

Results 2 comments of atlas-g0d

Yeah, I tried that, too, but then got an indent error. ```bash File "dfp_api_savedquery.py", line 40 except errors.DfpReportError as e: ^ IndentationError: unexpected unindent ``` The indent seems right to...

I got the code to work by doing the following: 1. At line 57, change `except errors.DfpReportError, e:` to `except errors.DfpReportError`**`as`**`e:` 2. Make sure at line 57 - `except errors.DfpReportError...