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.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/alot/settings/utils.py b/alot/settings/utils.py
index f46a8caf..2048a36c 100644
--- a/alot/settings/utils.py
+++ b/alot/settings/utils.py
@@ -27,7 +27,8 @@ def read_config(configpath=None, specpath=None, checks={}):
except ConfigObjError as e:
raise ConfigError(e)
except IOError:
- raise ConfigError('Could not read %s and/or %s' % (configpath, specpath))
+ raise ConfigError('Could not read %s and/or %s'
+ % (configpath, specpath))
except UnboundLocalError:
# this works around a bug in configobj
msg = '%s is malformed. Check for sections without parents..'