aboutsummaryrefslogtreecommitdiff
path: root/src/web/controllers/abstract.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/controllers/abstract.py')
-rw-r--r--src/web/controllers/abstract.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/web/controllers/abstract.py b/src/web/controllers/abstract.py
index 570fe062..58532660 100644
--- a/src/web/controllers/abstract.py
+++ b/src/web/controllers/abstract.py
@@ -103,6 +103,7 @@ class AbstractController:
def update(self, filters, attrs):
assert attrs, "attributes to update must not be empty"
+ result = None
try:
result = self._get(**filters).update(attrs, synchronize_session=False)
db.session.commit()
bgstack15