Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix issues #107 and #108 #109

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions libgsync/drive/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,8 @@ def service(self):

if credentials is None:
credentials = self._obtain_credentials()
if storage is not None:
storage.put(credentials)

debug("Authenticating")
import httplib2
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
],
install_requires = [
'docopt >= 0.6.0',
'google-api-python-client >= 1.2',
'httplib2 >= 0.8',
'oauth2client >= 1.1',
'google-api-python-client >= 1.2, < 1.5.0',
'httplib2 >= 0.8, < 0.16.0',
'oauth2client >= 1.1, < 4.0.0',
'python-dateutil >= 1.5',
'python-gflags >= 2.0',
'python-magic >= 0.4.6',
Expand Down