]> jfr.im git - z_archive/twitter.git/commitdiff
use relative import in oauth2.py for auth
authorMickael GOETZ <redacted>
Wed, 16 Oct 2013 19:16:14 +0000 (21:16 +0200)
committerMickael GOETZ <redacted>
Wed, 16 Oct 2013 19:16:14 +0000 (21:16 +0200)
twitter/oauth2.py

index 0709529488b5dd87f61b9e939fd9a68e053fa128..a71bab125e050de540be5548e00a5156d4f0aab3 100644 (file)
@@ -28,7 +28,7 @@ except ImportError:
     from urllib import quote, urlencode
 
 from base64 import b64encode
-from twitter.auth import Auth
+from .auth import Auth
 
 
 class OAuth2(Auth):