This commit is contained in:
j 2015-12-25 20:28:41 +05:30
commit d9bd113ee5
2 changed files with 7 additions and 7 deletions

View file

@ -297,7 +297,8 @@ class Node(Thread):
return False
if not changes:
return False
r = Changelog.apply_changes(self.user, changes)
with db.session():
r = Changelog.apply_changes(self.user, changes)
return r
def pushChanges(self, changes):