Fix missing reference
This commit is contained in:
parent
38bad6c593
commit
1f1b99c725
1 changed files with 1 additions and 1 deletions
|
@ -19,5 +19,5 @@ def extract_blocks_from_script(script):
|
|||
'''
|
||||
blocks = []
|
||||
blocknames = []
|
||||
blocks = list(_real_extract_blocks_from_stack(stack[2]))
|
||||
blocks = list(_real_extract_blocks_from_stack(script[2]))
|
||||
return blocks
|
||||
|
|
Reference in a new issue