Commit bd4b961a authored by Roger E. Masse's avatar Roger E. Masse

Opps, fixed a couple of newly introduced wrapping problems.

parent e7ee8c37
......@@ -151,7 +151,8 @@ PyObject *v, *w;
}
if ( dbm_store(dp->di_dbm, krec, drec, DBM_REPLACE) < 0 ) {
dbm_clearerr(dp->di_dbm);
PyErr_SetString(DbmError, "Cannot add item to database");
PyErr_SetString(DbmError,
"Cannot add item to database");
return -1;
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment