Commit 590705ba authored by Evan Simpson's avatar Evan Simpson

Changed loop interface name

parent 500c3ca1
...@@ -173,7 +173,7 @@ class TALInterpreter: ...@@ -173,7 +173,7 @@ class TALInterpreter:
self.macros = saveMacros self.macros = saveMacros
def do_loop(self, name, expr, block): def do_loop(self, name, expr, block):
iterator = self.engine.setupLoop(name, expr) iterator = self.engine.setRepeat(name, expr)
while iterator.next(): while iterator.next():
self.interpret(block) self.interpret(block)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment