summaryrefslogtreecommitdiffstats
path: root/Objects/object.c
diff options
context:
space:
mode:
Diffstat (limited to 'Objects/object.c')
-rw-r--r--Objects/object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/object.c b/Objects/object.c
index 9bcf08b..4fee2f0 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -591,7 +591,7 @@ do_compare(PyObject *v, PyObject *w)
/* Give up */
PyErr_Format(PyExc_TypeError,
- "unorderable types: '%.100s' <> '%.100s'",
+ "unorderable types: '%.100s' != '%.100s'",
v->ob_type->tp_name,
w->ob_type->tp_name);
return -1;