Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e30646a

Browse files
committed
Fix for an Issue #103
1 parent 41d16e5 commit e30646a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/core/option.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1715,11 +1715,11 @@ def __mergeOptions(inputOptions, overrideOptions):
17151715
conf[key] = value
17161716

17171717
for key, value in conf.items():
1718-
if value:
1718+
if value is not None:
17191719
kb.explicitSettings.add(key)
17201720

17211721
for key, value in defaults.items():
1722-
if not conf[key]:
1722+
if conf[key] is None:
17231723
conf[key] = value
17241724

17251725
def __setTrafficOutputFP():

0 commit comments

Comments
 (0)