Fix type of RefLogEntry.oid_old and RefLogEntry.oid_new

This was left from PR #449
This commit is contained in:
J. David Ibáñez 2015-01-16 12:39:16 +01:00
parent b538163536
commit beaaca7f63

@ -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}
};