summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Modules/_pickle.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_pickle.c b/Modules/_pickle.c
index 80bb212..51e0a24 100644
--- a/Modules/_pickle.c
+++ b/Modules/_pickle.c
@@ -6073,7 +6073,7 @@ load_persid(UnpicklerObject *self)
else {
PickleState *st = _Pickle_GetGlobalState();
PyErr_SetString(st->UnpicklingError,
- "A load persistent id instruction was encountered,\n"
+ "A load persistent id instruction was encountered, "
"but no persistent_load function was specified.");
return -1;
}
@@ -6100,7 +6100,7 @@ load_binpersid(UnpicklerObject *self)
else {
PickleState *st = _Pickle_GetGlobalState();
PyErr_SetString(st->UnpicklingError,
- "A load persistent id instruction was encountered,\n"
+ "A load persistent id instruction was encountered, "
"but no persistent_load function was specified.");
return -1;
}