From eb7c2cd6e3bb38f1a90454183d24e28781394b34 Mon Sep 17 00:00:00 2001 From: Taeyeon Mori Date: Mon, 13 Nov 2017 18:33:39 +0900 Subject: [PATCH] xconv: Fix typo --- lib/python/xconv/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/python/xconv/app.py b/lib/python/xconv/app.py index 369d924..8ef8dd0 100644 --- a/lib/python/xconv/app.py +++ b/lib/python/xconv/app.py @@ -146,7 +146,7 @@ def main(argv): print("\033[36mXConv %s (c) Taeyeon Mori\033[0m" % version) print("\033[34mProfile: %s\033[0m" % args.profile) - unknown_defines = [n for n in args.defines.keys() if n not in profile.defines] + unknown_defines = [n for n in args.define.keys() if n not in profile.defines] if unknown_defines: print("\033[33mWarning: Unknown defines %s; see '%s -i %s' for avaliable defines in this profile\033[0m" % (", ".join(unknown_defines), argv[0], args.profile))