Fix for an Issue #103

This commit is contained in:
Miroslav Stampar 2012-07-17 10:36:22 +02:00
parent 41d16e55cb
commit e30646a54f

View File

@ -1715,11 +1715,11 @@ def __mergeOptions(inputOptions, overrideOptions):
conf[key] = value
for key, value in conf.items():
if value:
if value is not None:
kb.explicitSettings.add(key)
for key, value in defaults.items():
if not conf[key]:
if conf[key] is None:
conf[key] = value
def __setTrafficOutputFP():