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

Wrap long lines

parent 4c7b11b2
......@@ -1722,8 +1722,18 @@ class Translation(models.Model):
Wrapper for setting proper committer. As this can not be done by
passing parameter, we need to check config on every commit.
'''
self.__configure_git(gitrepo, 'user', 'name', self.subproject.project.committer_name)
self.__configure_git(gitrepo, 'user', 'email', self.subproject.project.committer_email)
self.__configure_git(
gitrepo,
'user',
'name',
self.subproject.project.committer_name
)
self.__configure_git(
gitrepo,
'user',
'email',
self.subproject.project.committer_email
)
def __git_commit(self, gitrepo, author, timestamp, sync=False):
'''
......
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