]> jfr.im git - z_archive/twitter.git/commitdiff
Fix a typo while building url.
authorMike Verdone <redacted>
Tue, 21 Oct 2014 09:57:18 +0000 (11:57 +0200)
committerMike Verdone <redacted>
Tue, 21 Oct 2014 09:57:18 +0000 (11:57 +0200)
twitter/api.py

index 6259e1f847811663725f88a629dfd970389631c3..05d934c0c8a31dbece79d8102bb433930598b938 100644 (file)
@@ -181,7 +181,7 @@ class TwitterCall(object):
                 part = (str(kwargs.pop(uripart, uripart)))
             else:
                 part = uripart
-            uriparts.append(uripart)
+            uriparts.append(part)
         uri = '/'.join(uriparts)
 
         method = kwargs.pop('_method', None) or method_for_uri(uri)