From: Joshua Roesslein Date: Fri, 12 Feb 2010 22:31:51 +0000 (-0600) Subject: Fix an error due to a missing import in binder.py X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=7e9b4e3c3e3cce8a23c1b4f4e4cd16f43e7993fa;p=tweepy.git Fix an error due to a missing import in binder.py Thanks Doza for reporting! --- 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+}')