We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
httplib is no longer available in python3 and has been renamed as http.client.
Here is a patch to fix that in GDriveFS.
$ cat patches/patch-lib_gdrivefs_drive_py $OpenBSD$ Index: lib/gdrivefs/drive.py --- lib/gdrivefs/drive.py.orig +++ lib/gdrivefs/drive.py @@ -4,7 +4,7 @@ import dateutil.parser import random import json import time -import httplib +import http.client as httplib import ssl import tempfile import pprint
The text was updated successfully, but these errors were encountered:
No branches or pull requests
httplib is no longer available in python3 and has been renamed as http.client.
Here is a patch to fix that in GDriveFS.
The text was updated successfully, but these errors were encountered: