From 754e64fcf15d911d03a4299e48bf6066f509f1ba Mon Sep 17 00:00:00 2001 From: Rick Gibbed Date: Sat, 8 Feb 2020 16:25:13 -0600 Subject: [PATCH] Fix warning that newer Python is whining about. Fix a warning that a newer version of Python is whining about: SyntaxWarning: "is" with a literal. Did you mean "=="? --- xenia-build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xenia-build b/xenia-build index 1cf41601b..7a63b65dd 100755 --- a/xenia-build +++ b/xenia-build @@ -636,7 +636,7 @@ class BaseBuildCommand(Command): else: result = subprocess.call([ 'make', - '-j' if threads is 0 else '-j%d' % threads, + '-j' if threads == 0 else '-j%d' % threads, '-Cbuild/', 'config=%s_linux' % (args['config']), ] + pass_args + args['target'], shell=False, env=dict(os.environ))