aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-04-22 08:43:12 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-04-22 08:43:12 +0200
commit271179e4789bfa310aad3a21b5805a4a5ea544ba (patch)
treee9944fc2e87182973a2af65f77e4d13dcaf097a1 /src
parentWe will finally have a table for tags of articles and tags of bookmarks. (diff)
downloadnewspipe-271179e4789bfa310aad3a21b5805a4a5ea544ba.tar.gz
newspipe-271179e4789bfa310aad3a21b5805a4a5ea544ba.tar.bz2
newspipe-271179e4789bfa310aad3a21b5805a4a5ea544ba.zip
Removed debug print
Diffstat (limited to 'src')
-rw-r--r--src/web/controllers/abstract.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/web/controllers/abstract.py b/src/web/controllers/abstract.py
index 074ce24c..8563d5f2 100644
--- a/src/web/controllers/abstract.py
+++ b/src/web/controllers/abstract.py
@@ -100,7 +100,6 @@ class AbstractController:
def update(self, filters, attrs, return_objs=False, commit=True):
assert attrs, "attributes to update must not be empty"
- print(attrs)
result = self._get(**filters).update(attrs, synchronize_session=False)
if commit:
db.session.flush()
bgstack15