summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Objects/setobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/setobject.c b/Objects/setobject.c
index 0845840..61ba853 100644
--- a/Objects/setobject.c
+++ b/Objects/setobject.c
@@ -722,7 +722,7 @@ set_tp_print(PySetObject *so, FILE *fp, int flags)
if (firstpass == 1)
firstpass = 0;
else
- fprintf(fp, ",");
+ fprintf(fp, ", ");
if (PyObject_Print(item, fp, 0) != 0) {
Py_DECREF(it);
Py_DECREF(item);