Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41d16e5 commit e30646aCopy full SHA for e30646a
1 file changed
lib/core/option.py
@@ -1715,11 +1715,11 @@ def __mergeOptions(inputOptions, overrideOptions):
1715
conf[key] = value
1716
1717
for key, value in conf.items():
1718
- if value:
+ if value is not None:
1719
kb.explicitSettings.add(key)
1720
1721
for key, value in defaults.items():
1722
- if not conf[key]:
+ if conf[key] is None:
1723
1724
1725
def __setTrafficOutputFP():
0 commit comments