Commit bb290758 authored by Michal Čihař's avatar Michal Čihař

Remove not used param

parent 82a97172
......@@ -254,7 +254,7 @@ def handle_translate(obj, request, profile, user_locked,
)
def handle_merge(obj, request, profile, this_unit_url, next_unit_url):
def handle_merge(obj, request, profile, next_unit_url):
'''
Handles unit merging.
'''
......@@ -363,7 +363,7 @@ def translate(request, project, subproject, lang):
# Handle translation merging
if 'merge' in request.GET and not locked:
response = handle_merge(obj, request, profile, this_unit_url, next_unit_url)
response = handle_merge(obj, request, profile, next_unit_url)
if response is not None:
return response
......
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