summaryrefslogtreecommitdiff
path: root/alot/settings/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/settings/utils.py')
-rw-r--r--alot/settings/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/settings/utils.py b/alot/settings/utils.py
index f6912f98..6b5f77cb 100644
--- a/alot/settings/utils.py
+++ b/alot/settings/utils.py
@@ -25,7 +25,7 @@ def read_config(configpath=None, specpath=None, checks={}):
config = ConfigObj(infile=configpath, configspec=specpath,
file_error=True, encoding='UTF8')
except (ConfigObjError, IOError):
- raise ConfigError('Couls not read %s' % configpath)
+ raise ConfigError('Could not read %s' % configpath)
except UnboundLocalError:
# this works around a bug in configobj
msg = '%s is malformed. Check for sections without parents..'