Merge pull request #5092 from rneubert/patch-1

Fix typo in error message
This commit is contained in:
Takeshi KOMIYA 2018-06-15 11:43:21 +09:00 committed by GitHub
commit ee028c2e02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -365,7 +365,7 @@ def eval_config_file(filename, tags):
"called sys.exit()")
raise ConfigError(msg)
except Exception:
msg = __("There is a programable error in your configuration file:\n\n%s")
msg = __("There is a programmable error in your configuration file:\n\n%s")
raise ConfigError(msg % traceback.format_exc())
return namespace