From beaaca7f63374969ce4986a5d0a3f88aeb7fb95f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20David=20Ib=C3=A1=C3=B1ez?= Date: Fri, 16 Jan 2015 12:39:16 +0100 Subject: [PATCH] Fix type of RefLogEntry.oid_old and RefLogEntry.oid_new This was left from PR #449 --- src/reference.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/reference.c b/src/reference.c index 571bb57..4d8e56e 100644 --- a/src/reference.c +++ b/src/reference.c @@ -439,8 +439,8 @@ RefLogEntry_dealloc(RefLogEntry *self) } PyMemberDef RefLogEntry_members[] = { - MEMBER(RefLogEntry, oid_new, T_STRING, "New oid."), - MEMBER(RefLogEntry, oid_old, T_STRING, "Old oid."), + MEMBER(RefLogEntry, oid_new, T_OBJECT, "New oid."), + MEMBER(RefLogEntry, oid_old, T_OBJECT, "Old oid."), MEMBER(RefLogEntry, message, T_STRING, "Message."), {NULL} };