includehandler: Fix string formating issue
pylint is reporting W: 76, 8: Exception arguments suggest string formatting might be intended (raising-format-tuple) Signed-off-by: Daniel Wagner <daniel.wagner@siemens.com>
This commit is contained in:
parent
ce02354627
commit
90315d47bf
@ -74,7 +74,7 @@ def load_config(filename):
|
|||||||
|
|
||||||
if validation_error:
|
if validation_error:
|
||||||
raise LoadConfigException('Errors occured while validating the '
|
raise LoadConfigException('Errors occured while validating the '
|
||||||
'config file %s', filename)
|
'config file', filename)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
version_value = int(config['header']['version'])
|
version_value = int(config['header']['version'])
|
||||||
|
Loading…
Reference in New Issue
Block a user