Error messages missing value for format-specifier
authorJohn Dennis <jdennis@redhat.com>
Thu, 12 Nov 2015 20:02:33 +0000 (15:02 -0500)
committerPatrick Uiterwijk <puiterwijk@redhat.com>
Fri, 13 Nov 2015 23:54:36 +0000 (00:54 +0100)
Two error messages were missing the value for the %s format specifier.

Ticket: 201
Signed-off-by: John Dennis <jdennis@redhat.com>
Reviewed-by: Rob Crittenden <rcritten@redhat.com>
ipsilon/install/ipsilon-server-install

index 74d995c..64fa413 100755 (executable)
@@ -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'] = []