From 7e9b4e3c3e3cce8a23c1b4f4e4cd16f43e7993fa Mon Sep 17 00:00:00 2001 From: Joshua Roesslein Date: Fri, 12 Feb 2010 16:31:51 -0600 Subject: [PATCH] Fix an error due to a missing import in binder.py Thanks Doza for reporting! --- tweepy/binder.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tweepy/binder.py b/tweepy/binder.py index 8347ebd..bd508a5 100644 --- a/tweepy/binder.py +++ b/tweepy/binder.py @@ -8,6 +8,7 @@ import time import re from tweepy.error import TweepError +from tweepy.utils import convert_to_utf8_str re_path_template = re.compile('{\w+}') -- 2.25.1