Fixing typo in previous commit (__repr__ misnamed.)
authorinactivist <inactivist@gmail.com>
Thu, 14 Feb 2013 15:34:22 +0000 (07:34 -0800)
committerinactivist <inactivist@gmail.com>
Thu, 14 Feb 2013 15:34:22 +0000 (07:34 -0800)
tweepy/models.py

index 0039e3d137f9bffb8eebd6ea2d9c347bee5515a0..6a08bdd1b6acd26287d33af543d3a8a3db451f98 100644 (file)
@@ -39,7 +39,7 @@ class Model(object):
                 results.append(cls.parse(api, obj))
         return results
 
-    def model__repr__(self):
+    def __repr__(self):
         state = ['%s=%s' % (k, repr(v)) for (k,v) in vars(self).items()]
         return '%s(%s)' % (self.__class__.__name__, ', '.join(state))