fixing python 3

This commit is contained in:
Paul R. Tagliamonte 2013-03-07 22:56:35 -05:00
parent 3166fec53e
commit 4945d0aa14

View File

@ -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]