Status.user->Status.author
authorJosh Roesslein <jroesslein@gmail.com>
Thu, 13 Aug 2009 17:09:29 +0000 (12:09 -0500)
committerJosh Roesslein <jroesslein@gmail.com>
Thu, 13 Aug 2009 17:09:29 +0000 (12:09 -0500)
CHANGES [new file with mode: 0644]
ROADMAP [new file with mode: 0644]
tweepy/parsers.py

diff --git a/CHANGES b/CHANGES
new file mode 100644 (file)
index 0000000..d826004
--- /dev/null
+++ b/CHANGES
@@ -0,0 +1,6 @@
+All changes made to the library that might affect applications
+during upgrade will be listed here.
+
+1.0 -> 1.0.1
+------------
+Status.user --> Status.author
diff --git a/ROADMAP b/ROADMAP
new file mode 100644 (file)
index 0000000..e69de29
index a2cda3a95261cf9dcd4e8be457e151fa2ba3f558..0f3f2f9ee4e2e04597085f3c48dde8af3c94677a 100644 (file)
@@ -73,7 +73,7 @@ def _parse_status(obj, api):
   status._api = api
   for k,v in obj.items():
     if k == 'user':
-      setattr(status, k, _parse_user(v, api))
+      setattr(status, 'author', _parse_user(v, api))
     elif k == 'created_at':
       setattr(status, k, _parse_datetime(v))
     elif k == 'source':