Clean up error markers
Change-Id: I2810fa38423c54b5915f67185609cbd4a0493377
Signed-off-by: George Keishing <gkeishin@in.ibm.com>
diff --git a/ffdc/collect_ffdc.py b/ffdc/collect_ffdc.py
index 730f830..e783e0c 100644
--- a/ffdc/collect_ffdc.py
+++ b/ffdc/collect_ffdc.py
@@ -79,24 +79,24 @@
if not remote:
all_options_ok = False
print("\
- \n>>>>>\tERROR: Name/IP of the remote host is not specified in CLI options or env OPENBMC_HOST.")
+ \n\tERROR: Name/IP of the remote host is not specified in CLI options or env OPENBMC_HOST.")
if not username:
all_options_ok = False
print("\
- \n>>>>>\tERROR: User on the remote host is not specified in CLI options or env OPENBMC_USERNAME.")
+ \n\tERROR: User on the remote host is not specified in CLI options or env OPENBMC_USERNAME.")
if not password:
all_options_ok = False
print("\
- \n>>>>>\tERROR: Password for user on remote host is not specified in CLI options "
+ \n\tERROR: Password for user on remote host is not specified in CLI options "
+ "or env OPENBMC_PASSWORD.")
if not remote_type:
all_options_ok = False
print("\
- \n>>>>>\tERROR: Remote host os type is not specified in CLI options.")
+ \n\tERROR: Remote host os type is not specified in CLI options.")
if not os.path.isfile(ffdc_config):
all_options_ok = False
print("\
- \n>>>>>\tERROR: Config file %s is not found. Please verify path and filename." % ffdc_config)
+ \n\tERROR: Config file %s is not found. Please verify path and filename." % ffdc_config)
return all_options_ok