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
commit7e2d5980ff93d961a4f37c938850a3ec1d112cfc (patch)
tree41943dbe7d0dbe08591fe68cd89fecef55f630a8
parent52f0dd730079d859fc6d33dfb3ab25b6145928af (diff)
get_dependencies does not return a list of labels nor strings
original-commit-id: 6ec59c81936deeb3b2595e3d9b243a3b5301ba59
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 1622266..eb0c1ca 100644
--- a/README.md
+++ b/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