Browse Source

quick fix for formatting of error messages, bz# 1640823

Peter Ruan 6 years ago
parent
commit
7a3454bb2c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      roles/lib_utils/action_plugins/sanity_checks.py

+ 2 - 2
roles/lib_utils/action_plugins/sanity_checks.py

@@ -444,9 +444,9 @@ class ActionModule(ActionBase):
     def check_for_oreg_password(self, hostvars, host, odt):
         """Ensure oreg_password is defined when using registry.redhat.io"""
         reg_to_check = 'registry.redhat.io'
-        err_msg = ("oreg_auth_user and oreg_auth_password must be provided when"
+        err_msg = ("oreg_auth_user and oreg_auth_password must be provided when "
                    "deploying openshift-enterprise")
-        err_msg2 = ("oreg_auth_user and oreg_auth_password must be provided when using"
+        err_msg2 = ("oreg_auth_user and oreg_auth_password must be provided when using "
                     "{}".format(reg_to_check))
 
         oreg_password = self.template_var(hostvars, host, 'oreg_auth_password')