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

Merge branch 'master' into bootstrap

parents d5f0b8f8 7857e19c
......@@ -172,7 +172,7 @@ class Repository(object):
"""
return cls._popen(['--version'])
def set_committer(self, name, email):
def set_committer(self, name, mail):
"""
Configures commiter name.
"""
......@@ -256,12 +256,12 @@ class GitRepository(Repository):
"""
self.execute(['config', path, value])
def set_committer(self, name, email):
def set_committer(self, name, mail):
"""
Configures commiter name.
"""
self.set_config('user.name', name)
self.set_config('user.email', email)
self.set_config('user.email', mail)
def reset(self, branch):
"""
......
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