From c9400d426748786f88789910f0c37a73342121be Mon Sep 17 00:00:00 2001 From: John Dennis Date: Nov 12 2015 20:05:14 +0000 Subject: Error messages missing value for format-specifier Two error messages were missing the value for the %s format specifier. Ticket: 201 Signed-off-by: John Dennis --- diff --git a/ipsilon/install/ipsilon-server-install b/ipsilon/install/ipsilon-server-install index 7837527..e92ad02 100755 --- a/ipsilon/install/ipsilon-server-install +++ b/ipsilon/install/ipsilon-server-install @@ -410,7 +410,8 @@ def parse_args(plugins): return args if len(args['hostname'].split('.')) < 2: - raise ConfigurationError('Hostname: %s is not a FQDN') + raise ConfigurationError('Hostname: %s is not a FQDN' % + args['hostname']) for plugin_group in plugins: for plugin_name in plugins[plugin_group]: @@ -420,7 +421,8 @@ def parse_args(plugins): try: pwd.getpwnam(args['system_user']) except KeyError: - raise ConfigurationError('User: %s not found on the system') + raise ConfigurationError('User: %s not found on the system' % + args['system_user']) if args['lm_order'] is None: args['lm_order'] = []