From e92f648b815bfc03778098c1b4f544e8502f64a0 Mon Sep 17 00:00:00 2001 From: Ryan McGrath Date: Fri, 7 Oct 2011 06:27:24 +0900 Subject: [PATCH] Fix issue #44, typo --- twython3k/twython.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twython3k/twython.py b/twython3k/twython.py index 047941d..1e09d59 100644 --- a/twython3k/twython.py +++ b/twython3k/twython.py @@ -257,7 +257,7 @@ class Twython(object): @staticmethod def constructApiURL(base_url, params): - return base_url + "?" + "&"join(["%s=%s" % (key, urllib.parse.quote_plus(Twython.unicode2utf8(value))) for (key, value) in list(params.items())]) + return base_url + "?" + "&".join(["%s=%s" % (key, urllib.parse.quote_plus(Twython.unicode2utf8(value))) for (key, value) in list(params.items())]) @staticmethod def shortenURL(url_to_shorten, shortener = "http://is.gd/api.php", query = "longurl"):