Fix a typo/cut-n-paste error in DBCursor.join_item so that it doesn't
return a tuple.  (this also implies that nobody uses this method; the
bug has been here for a long time)
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 @@
         retval = NULL;
     }
     else {
-        retval = Py_BuildValue("s#s#", key.data, key.size);
+        retval = Py_BuildValue("s#", key.data, key.size);
         FREE_DBT(key);
     }