From: Marek Marecki Date: Fri, 3 May 2013 09:16:18 +0000 (+0200) Subject: Removed method add() from streams.FollowedTags (docs say: create()) X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=dc17be88bd77f1026cfc0f2f6597d627e2010275;p=diaspy.git Removed method add() from streams.FollowedTags (docs say: create()) --- diff --git a/diaspy/streams.py b/diaspy/streams.py index d0b4b25..265bed6 100644 --- a/diaspy/streams.py +++ b/diaspy/streams.py @@ -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))