diff --git a/hy/macros.py b/hy/macros.py index 368e1af..cd083cc 100644 --- a/hy/macros.py +++ b/hy/macros.py @@ -37,7 +37,7 @@ def macro(name): def process(tree): if isinstance(tree, HyExpression): it = iter(tree) - fn = it.next() + fn = next(it) body = [process(x) for x in it]