From 90315d47bf30e616ac97326865c37fedffc3a5eb Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Tue, 2 Jan 2018 14:12:53 +0100 Subject: [PATCH] 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 --- kas/includehandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kas/includehandler.py b/kas/includehandler.py index da09e24..c608eaa 100644 --- a/kas/includehandler.py +++ b/kas/includehandler.py @@ -74,7 +74,7 @@ def load_config(filename): if validation_error: raise LoadConfigException('Errors occured while validating the ' - 'config file %s', filename) + 'config file', filename) try: version_value = int(config['header']['version'])