From e4c52c7429ce9a4dc05747e5a479118ce6195a63 Mon Sep 17 00:00:00 2001 From: Aditya Vaidya <648148+kroq-gar78@users.noreply.github.com> Date: Fri, 12 Aug 2022 22:13:32 -0500 Subject: [PATCH] MNT fix typos (#459) Co-authored-by: Aditya Vaidya --- cortex/webgl/view.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cortex/webgl/view.py b/cortex/webgl/view.py index 17d0512f..e032d305 100644 --- a/cortex/webgl/view.py +++ b/cortex/webgl/view.py @@ -30,11 +30,11 @@ try: cmapdir = options.config.get('webgl', 'colormaps') if not os.path.exists(cmapdir): - raise Exception("Colormap directory (%s) does not exits"%cmapdir) + raise Exception("Colormap directory (%s) does not exist"%cmapdir) except NoOptionError: cmapdir = os.path.join(options.config.get("basic", "filestore"), "colormaps") if not os.path.exists(cmapdir): - raise Exception("Colormap directory was not defined in the config file and the default (%s) does not exits"%cmapdir) + raise Exception("Colormap directory was not defined in the config file and the default (%s) does not exist"%cmapdir) domain_name = options.config.get("webgl", "domain_name")