diff --git a/porting-code-to-python-3-with-2to3.html b/porting-code-to-python-3-with-2to3.html index e86066c..682cfc7 100644 --- a/porting-code-to-python-3-with-2to3.html +++ b/porting-code-to-python-3-with-2to3.html @@ -560,7 +560,7 @@ for an_iterator in a_sequence_of_iterators:
reduce(a, b, c)
-from functtools import reduce
+from functools import reduce
reduce(a, b, c)