From b1af9f085045762ca9fea4a37be8a0d98865b168 Mon Sep 17 00:00:00 2001 From: rneubert <32850878+rneubert@users.noreply.github.com> Date: Thu, 14 Jun 2018 17:59:55 -0700 Subject: [PATCH] Fix typo in error message --- sphinx/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/config.py b/sphinx/config.py index 4ad09c08b..c5f44e57c 100644 --- a/sphinx/config.py +++ b/sphinx/config.py @@ -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