projects
/
tweepy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
78ca5d7
)
Fixing typo in previous commit (__repr__ misnamed.)
author
inactivist
<inactivist@gmail.com>
Thu, 14 Feb 2013 15:34:22 +0000
(07:34 -0800)
committer
inactivist
<inactivist@gmail.com>
Thu, 14 Feb 2013 15:34:22 +0000
(07:34 -0800)
tweepy/models.py
patch
|
blob
|
blame
|
history
diff --git
a/tweepy/models.py
b/tweepy/models.py
index 0039e3d137f9bffb8eebd6ea2d9c347bee5515a0..6a08bdd1b6acd26287d33af543d3a8a3db451f98 100644
(file)
--- a/
tweepy/models.py
+++ b/
tweepy/models.py
@@
-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))