From: Guan Yang Date: Sun, 6 Jun 2010 18:21:34 +0000 (+0800) Subject: TweepError was not imported in parsers.py, leading to "global name 'TweepError' is... X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=8019d637d4d67ffb279065e147f4cfc84bf8981d;p=tweepy.git TweepError was not imported in parsers.py, leading to "global name 'TweepError' is not defined" errors --- diff --git a/tweepy/parsers.py b/tweepy/parsers.py index 9ab3704..1aa643e 100644 --- a/tweepy/parsers.py +++ b/tweepy/parsers.py @@ -4,6 +4,7 @@ from tweepy.models import ModelFactory from tweepy.utils import import_simplejson +from tweepy.error import TweepError class Parser(object):