No converting to plain
This commit is contained in:
parent
20fa690c90
commit
e47845cd90
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ class __project_codename_camel__:
|
||||||
elif self.config['output_format'] == 'YAML':
|
elif self.config['output_format'] == 'YAML':
|
||||||
return yaml.dump(message, Dumper=yaml.Dumper)
|
return yaml.dump(message, Dumper=yaml.Dumper)
|
||||||
elif self.config['output_format'] == 'PLAIN':
|
elif self.config['output_format'] == 'PLAIN':
|
||||||
return message
|
return f"{message}"
|
||||||
else:
|
else:
|
||||||
self._log.warning(
|
self._log.warning(
|
||||||
"Output format '%s' not supported",
|
"Output format '%s' not supported",
|
||||||
|
|
Loading…
Reference in a new issue