Add 'description' parameter to API.create_list() and API.update_list()
authorJoshua Roesslein <jroesslein@gmail.com>
Thu, 10 Dec 2009 05:50:13 +0000 (23:50 -0600)
committerJoshua Roesslein <jroesslein@gmail.com>
Thu, 10 Dec 2009 05:50:13 +0000 (23:50 -0600)
CHANGELOG
tweepy/api.py

index 6fd1d16fca2b15775ea6c03e123665c39cc7346f..7bf19377e45167fae37ec8a4ae97149729077381 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -22,6 +22,8 @@ during upgrade will be listed here.
        - retweet() method now works correctly
     - Added local trends method: trends_available() and trends_location()
        - send_direct_message() now accepts either a user/screen_name/user_id for recipient of DM
+    - update_status() added 'source' parameter for Identi.ca
+    - create_list() and update_list() added 'description' parameter
 + tweepy.debug() enables httplib debug mode
 + New Sphinx documentation (Thanks Kumar!) in doc/
 + Fix User.timeline() to return correct timeline
index d479c33409bc662c4b1bb97d07e9fc45e2672c7d..52fc3b5d51110b859650e2833dbe6aa19a87c435 100644 (file)
@@ -461,7 +461,7 @@ class API(object):
             path = '/%s/lists.json' % self.auth.get_username(),
             method = 'POST',
             parser = parse_list,
-            allowed_param = ['name', 'mode'],
+            allowed_param = ['name', 'mode', 'description'],
             require_auth = True
         )(self, *args, **kargs)
 
@@ -478,7 +478,7 @@ class API(object):
             path = '/%s/lists/%s.json' % (self.auth.get_username(), slug),
             method = 'POST',
             parser = parse_list,
-            allowed_param = ['name', 'mode'],
+            allowed_param = ['name', 'mode', 'description'],
             require_auth = True
         )(self, *args, **kargs)