summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--index.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.rst b/index.rst
index 47c4d17..fedf7ee 100644
--- a/index.rst
+++ b/index.rst
@@ -101,7 +101,7 @@ Specializing JSON object encoding::
>>> def encode_complex(obj):
... if isinstance(obj, complex):
... return [obj.real, obj.imag]
- ... raise TypeError(repr(o) + " is not JSON serializable")
+ ... raise TypeError(repr(obj) + " is not JSON serializable")
...
>>> json.dumps(2 + 1j, default=encode_complex)
'[2.0, 1.0]'