in opmon/platform.py [0:0]
def _check_value_not_null(self, attribute, value):
if not value and str(value).lower() == "none":
raise PlatformConfigurationException(
"'%s' attribute requires a value, please double check \
platform configuration file. Value provided: %s"
% (attribute.name, str(value))
)