# Copyright 2009-2010 Joshua Roesslein
# See LICENSE for details.
+from __future__ import print_function
+
+import six
+
+
class TweepError(Exception):
"""Tweepy exception"""
def __init__(self, reason, response=None):
- self.reason = unicode(reason)
+ self.reason = six.text_type(reason)
self.response = response
Exception.__init__(self, reason)
def __str__(self):
return self.reason
-