From: Joshua Date: Sat, 30 Jan 2010 23:52:33 +0000 (-0600) Subject: Fix a bug that caused list methods to fail. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=f32fe69503da641075f5fc6d794b576d19324ad4;p=tweepy.git Fix a bug that caused list methods to fail. --- diff --git a/tweepy/binder.py b/tweepy/binder.py index e62e9c5..7ae14dd 100644 --- a/tweepy/binder.py +++ b/tweepy/binder.py @@ -92,11 +92,12 @@ def bind_api(**config): else: try: value = urllib.quote(self.parameters[name]) - self.path = self.path.replace(variable, value) except KeyError: raise TweepError('No parameter value found for path variable: %s' % name) del self.parameters[name] + self.path = self.path.replace(variable, value) + def execute(self): # Build the request URL url = self.api_root + self.path