fixing python 3
This commit is contained in:
parent
3166fec53e
commit
4945d0aa14
@ -37,7 +37,7 @@ def macro(name):
|
|||||||
def process(tree):
|
def process(tree):
|
||||||
if isinstance(tree, HyExpression):
|
if isinstance(tree, HyExpression):
|
||||||
it = iter(tree)
|
it = iter(tree)
|
||||||
fn = it.next()
|
fn = next(it)
|
||||||
|
|
||||||
body = [process(x) for x in it]
|
body = [process(x) for x in it]
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user