get_dependencies does not return a list of labels nor strings

This commit is contained in:
Bryan Bishop 2012-05-02 13:43:17 -05:00
parent f51cde7250
commit 6ec59c8193
1 changed files with 2 additions and 2 deletions

View File

@ -53,8 +53,8 @@ print script.to_asm()
# what labels does it refer to?
# these must be present in the final asm file for rgbasm to compile the file
label_names = script.get_dependencies()
print str(label_names)
objdeps = script.get_dependencies()
print str(objdeps)
# the individual commands that make up the script
commands = script.commands