summaryrefslogtreecommitdiffstats
path: root/Modules/_bsddb.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/_bsddb.c')
-rw-r--r--Modules/_bsddb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_bsddb.c b/Modules/_bsddb.c
index 7a4f9e1..b74491c 100644
--- a/Modules/_bsddb.c
+++ b/Modules/_bsddb.c
@@ -3033,7 +3033,7 @@ DBC_join_item(DBCursorObject* self, PyObject* args)
retval = NULL;
}
else {
- retval = Py_BuildValue("s#s#", key.data, key.size);
+ retval = Py_BuildValue("s#", key.data, key.size);
FREE_DBT(key);
}