shithub: pokered

Download patch

ref: db0c37557d6ce7c0c903ba2ef17fa5d68da9e1cf
parent: 58a9aacc0b5b00e0f06acfe99cb3612127ec24fd
author: sawakita <sawakitanoodles@gmail.com>
date: Mon Oct 1 14:54:45 EDT 2012

Fix param error in load_asm_if_one_exists_in()

Not sure, but I suppose that using *args makes the passed list an element
of the args list, thus causing iteration on args to yield the passed
list as an element instead of yielding the single elements of the passed
list. Maybe.

--- a/extras/analyze_incbins.py
+++ b/extras/analyze_incbins.py
@@ -44,9 +44,9 @@
         raise Exception("file doesn't exists (did you mean one among: {0}?)".format(", ".join(defaults)))
     return asm
 
-def load_asm_if_one_exists_in(*args):
+def load_asm_if_one_exists_in(defaults):
     global asm
-    for f in args:
+    for f in defaults:
         if os.path.exists(f):
             asm = get_all_lines_from_file(f)
             return True