Skip to content
Snippets Groups Projects
Commit c9f351b6 authored by Olivier Le Brouster's avatar Olivier Le Brouster
Browse files

fix: django: create_or_update: missing return value

parent 08fbf390
No related branches found
No related tags found
No related merge requests found
...@@ -164,7 +164,7 @@ class EstimEventWrapperBase(object): ...@@ -164,7 +164,7 @@ class EstimEventWrapperBase(object):
updated = True updated = True
if production: if production:
estim_event.save() estim_event.save()
return updated, created return updated, created, data_hash
@classmethod @classmethod
def remove(cls, estim_event, production=True): def remove(cls, estim_event, production=True):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment