From db0c37557d6ce7c0c903ba2ef17fa5d68da9e1cf Mon Sep 17 00:00:00 2001 From: sawakita Date: Mon, 1 Oct 2012 18:54:45 +0200 Subject: [PATCH] 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. --- extras/analyze_incbins.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extras/analyze_incbins.py b/extras/analyze_incbins.py index 612c1410..b7295206 100644 --- a/extras/analyze_incbins.py +++ b/extras/analyze_incbins.py @@ -44,9 +44,9 @@ def load_asm(filename=os.path.join(pokered_dir, "main.asm")): 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