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.
2 parents cff996a + c4645f1 commit b2e331dCopy full SHA for b2e331d
redfish-client/redfish-client
@@ -363,7 +363,9 @@ if __name__ == '__main__':
363
364
# Initialize Template system (jinja2)
365
templates_path = config.get("redfish-client", "templates_path")
366
- dml = float(config.get("redfish-client", "monitor_loop", DEFMONITORLOOP))
+ dml = float(config.get("redfish-client", "monitor_loop"))
367
+ if dml is None:
368
+ dml = DEFMONITORLOOP
369
logger.debug("Initialize template system")
370
jinja2_env = jinja2.Environment(
371
loader=jinja2.FileSystemLoader(templates_path))
0 commit comments