summaryrefslogtreecommitdiff
path: root/ishtar_common/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r--ishtar_common/models.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py
index 9011c4638..a6cfcf697 100644
--- a/ishtar_common/models.py
+++ b/ishtar_common/models.py
@@ -4286,8 +4286,9 @@ class Merge(models.Model):
for m in self.merge_exclusion.all():
m.delete()
- def merge(self, item, keep_old=False):
- merge_model_objects(self, item, keep_old=keep_old)
+ def merge(self, item, keep_old=False, exclude_fields=None):
+ merge_model_objects(self, item, keep_old=keep_old,
+ exclude_fields=exclude_fields)
self.generate_merge_candidate()