summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfirm1 <dralliw@users.noreply.github.com>2014-03-24 14:56:02 +0100
committerfirm1 <dralliw@users.noreply.github.com>2014-03-24 14:56:02 +0100
commit4a7e7a769087b1790a18d6645740b5b670f5086b (patch)
tree1b9a840f06dd355c3099d364b5fc9d66ca42e5af
parent28fdf05b1d7827744b7b70eeb1cc66d3afd38c82 (diff)
downloadgitpython-4a7e7a769087b1790a18d6645740b5b670f5086b.tar.gz
Update symbolic.py
-rw-r--r--git/refs/symbolic.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/refs/symbolic.py b/git/refs/symbolic.py
index ef21950f..5374285e 100644
--- a/git/refs/symbolic.py
+++ b/git/refs/symbolic.py
@@ -355,7 +355,7 @@ class SymbolicReference(object):
:param newbinsha: The sha the ref points to now. If None, our current commit sha
will be used
:return: added RefLogEntry instance"""
- return RefLog.append_entry(self.repo.config_reader(), RefLog.path(self), oldbinsha,
+ return RefLog.append_entry(self.commit.committer, RefLog.path(self), oldbinsha,
(newbinsha is None and self.commit.binsha) or newbinsha,
message)