Commit 1d5cc3a9 authored by Michal Čihař's avatar Michal Čihař

Remove unused parameter

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 5509a2e3
...@@ -1053,8 +1053,7 @@ class Translation(models.Model, URLMixin, PercentMixin, LoggerMixin): ...@@ -1053,8 +1053,7 @@ class Translation(models.Model, URLMixin, PercentMixin, LoggerMixin):
return result return result
def merge_translations(self, request, author, store2, overwrite, def merge_translations(self, request, store2, overwrite, add_fuzzy, fuzzy):
add_fuzzy, fuzzy):
""" """
Merges translation unit wise, needed for template based translations to Merges translation unit wise, needed for template based translations to
add new strings. add new strings.
...@@ -1208,7 +1207,6 @@ class Translation(models.Model, URLMixin, PercentMixin, LoggerMixin): ...@@ -1208,7 +1207,6 @@ class Translation(models.Model, URLMixin, PercentMixin, LoggerMixin):
# Merge on units level # Merge on units level
ret = self.merge_translations( ret = self.merge_translations(
request, request,
author,
store, store,
overwrite, overwrite,
(method == 'fuzzy'), (method == 'fuzzy'),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment