Fix typo in error output

This commit is contained in:
Joshua M. Boniface 2020-02-26 16:35:09 -05:00
parent 72a1da23a7
commit fe91730d56

View file

@ -64,7 +64,7 @@ with open(config_file, 'r') as cfgfile:
try:
o_config = yaml.load(cfgfile)
except Exception as e:
print('ERROR: Failed ot parse configuration file: {}'.format(e))
print('ERROR: Failed to parse configuration file: {}'.format(e))
exit(1)
try: