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

Fix order of params

parent 62d3c582
......@@ -228,9 +228,10 @@ class Translation(models.Model):
'''
repo = self.subproject.get_repo()
repo.git.commit(
self.filename,
author = '%s <%s>' % (request.user.get_full_name(), request.user.email),
m = 'Translated using Weblate',
self.filename)
m = 'Translated using Weblate'
)
def update_unit(self, request, unit):
'''
......
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