summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2012-05-02 13:43:17 -0500
committerBryan Bishop <kanzure@gmail.com>2012-05-02 13:43:17 -0500
commit6ec59c81936deeb3b2595e3d9b243a3b5301ba59 (patch)
treeeae97ca8259d3caa62373189b695b126c1f423bf
parentf51cde725088984ac6f437112437274082f7cfeb (diff)
get_dependencies does not return a list of labels nor strings
-rw-r--r--extras/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/README.md b/extras/README.md
index 16222663a..eb0c1ca09 100644
--- a/extras/README.md
+++ b/extras/README.md
@@ -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