Removed method add() from streams.FollowedTags (docs say: create())
authorMarek Marecki <triviuss@gmail.com>
Fri, 3 May 2013 09:16:18 +0000 (11:16 +0200)
committerMarek Marecki <triviuss@gmail.com>
Fri, 3 May 2013 09:16:18 +0000 (11:16 +0200)
diaspy/streams.py

index d0b4b250fb449e5b0f2011074d38c270d8a7d9ee..265bed6f8dc73b33aac33309bf112105cee091f6 100644 (file)
@@ -259,25 +259,15 @@ class FollowedTags(Generic):
     def _setlocation(self):
         self._location = 'followed_tags.json'
 
-    def add(self, tag_name):
-        """Follow new tag.
-        """
-        data = {'authenticity_token': self._connection.getToken(),
-                'tag_name': tag_name}
-        r = self._connection.post('tags', data=data)
-        if r.status_code != 200:
-            raise Exception('wrong status code: {0}'.format(r.status_code))
-
     def create(self, tag_name):
         """Follow new tag.
 
         :param tag_name: tag name
         :type tag_name: str
         """
-        data = {'tag_name':tag_name,
-                'authenticity_token':self._connection.getToken(),
+        data = {'authenticity_token':self._connection.getToken(),
+                'tag_name':tag_name,
                }
-        request = self._connection.post('followed_tags', data=data, headers=headers)
-
+        request = self._connection.post('followed_tags', data=data)
         if request.status_code != 200:
             raise Exception('wrong error code: {0}'.format(request.status_code))