From 08a5946e09cf6bce2af218da94834ac38aca0eda Mon Sep 17 00:00:00 2001 From: Mats Wichmann Date: Mon, 24 Jan 2022 14:06:37 -0700 Subject: Fix ci complaint for PR #4089 Signed-off-by: Mats Wichmann --- SCons/Tool/jar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SCons/Tool/jar.py b/SCons/Tool/jar.py index 7f58dc3..3a75be7 100644 --- a/SCons/Tool/jar.py +++ b/SCons/Tool/jar.py @@ -105,7 +105,7 @@ def Jar(env, target=None, source=[], *args, **kw): # jar target should not be a list so assume they passed # no target and want implicit target to be made and the arg # was actaully the list of sources - if SCons.Util.is_List(target) and source is None: + if SCons.Util.is_List(target) and source is []: SCons.Warnings.warn( SCons.Warnings.SConsWarning, "Making implicit target jar file, and treating the list as sources" -- cgit v0.12