diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-02-13 15:27:13 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-02-13 15:27:13 +0100 |
commit | 879427aa740f399aecd31c0e12909e6f39705f5e (patch) | |
tree | 5bb2d792e7211c763db550eaf8f0c676e37aa25a /src/web/controllers/bookmark.py | |
parent | Merge branch 'master' of github.com:newspipe/newspipe into bookmark (diff) | |
download | newspipe-879427aa740f399aecd31c0e12909e6f39705f5e.tar.gz newspipe-879427aa740f399aecd31c0e12909e6f39705f5e.tar.bz2 newspipe-879427aa740f399aecd31c0e12909e6f39705f5e.zip |
wip
Diffstat (limited to 'src/web/controllers/bookmark.py')
-rw-r--r-- | src/web/controllers/bookmark.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/controllers/bookmark.py b/src/web/controllers/bookmark.py index cf7815a8..f7dab9d8 100644 --- a/src/web/controllers/bookmark.py +++ b/src/web/controllers/bookmark.py @@ -16,5 +16,5 @@ class BookmarkController(AbstractController): return self._count_by(Bookmark.href, filters) def update(self, filters, attrs, *args, **kwargs): - self.tags = attrs['tags'] + #self.tag_objs = attrs['tags'] return super().update(filters, attrs, *args, **kwargs) |