Closed jelkink closed 9 years ago
For me, authentication did not work until I changed the code around lines 470-472, adding rstrip()
self.clientid = self.f.readline().rstrip() self.clientsecret = self.f.readline().rstrip() self.apikey = self.f.readline().rstrip()
The URL to the Google authentication included %0A ...
Also, should requirements.txt include gflags?
You're right on both accounts. The gflags requirement is newer than the last revision of the requirements.txt file, which is why it was missing from there.
For me, authentication did not work until I changed the code around lines 470-472, adding rstrip()
The URL to the Google authentication included %0A ...
Also, should requirements.txt include gflags?