]> jfr.im git - z_archive/twitter.git/commitdiff
Fix the uri extension by attribute name.
authorAndrew W. Donoho <redacted>
Wed, 15 Jan 2014 01:23:18 +0000 (19:23 -0600)
committerAndrew W. Donoho <redacted>
Wed, 15 Jan 2014 01:23:18 +0000 (19:23 -0600)
twitter/api.py

index 6481d3292b5a7bd6a376806e9324e1f774880beb..ed6b99ec55c032980d8468acbeeb7b4ebbce13c4 100644 (file)
@@ -146,9 +146,9 @@ class TwitterCall(object):
             def extend_call(arg):
                 return self.callable_cls(
                     auth=self.auth, format=self.format, domain=self.domain,
-                    callable_cls=self.callable_cls, timeout=self.timeout, uriparts=self.uriparts,
+                    callable_cls=self.callable_cls, timeout=self.timeout,
                     secure=self.secure, gzip=self.gzip,
-                    (arg,))
+                    uriparts=self.uriparts + (arg,))
             if k == "_":
                 return extend_call
             else: