fixed the infinite recursion bug.

pull/1/head
Yusuke Shinyama 2011-05-14 16:32:09 +09:00
parent 0c41b8348e
commit e5d02f8653
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class IndexAssigner(object):
self.index += 1
elif isinstance(obj, LTTextGroup):
for x in obj:
self.run(obj)
self.run(x)
return