summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfirm1 <dralliw@users.noreply.github.com>2014-03-24 14:54:23 +0100
committerfirm1 <dralliw@users.noreply.github.com>2014-03-24 14:54:23 +0100
commit28fdf05b1d7827744b7b70eeb1cc66d3afd38c82 (patch)
tree02e315d1e1930687384d7fd329a3c1e0ab1e38f0
parent5d602f267c32e1e917599d9bcdcfec4eef05d477 (diff)
downloadgitpython-28fdf05b1d7827744b7b70eeb1cc66d3afd38c82.tar.gz
correct log reference
-rw-r--r--git/refs/log.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/refs/log.py b/git/refs/log.py
index 9a719ec0..560ffd3e 100644
--- a/git/refs/log.py
+++ b/git/refs/log.py
@@ -247,7 +247,7 @@ class RefLog(list, Serializable):
raise ValueError("Shas need to be given in binary format")
#END handle sha type
assure_directory_exists(filepath, is_file=True)
- entry = RefLogEntry((bin_to_hex(oldbinsha), bin_to_hex(newbinsha), Actor.committer(config_reader), (int(time.time()), time.altzone), message))
+ entry = RefLogEntry((bin_to_hex(oldbinsha), bin_to_hex(newbinsha), config_reader, (int(time.time()), time.altzone), message))
lf = LockFile(filepath)
lf._obtain_lock_or_raise()