summaryrefslogtreecommitdiff
path: root/alot/settings/theme.py
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2012-07-21 16:02:25 +0100
committerPatrick Totzke <patricktotzke@gmail.com>2012-07-21 16:02:25 +0100
commit9a4158ebe38c40d7897c12be9b5257caec5e1293 (patch)
tree39074cc013d706e96b60aae7f1ce97bb25b9bec8 /alot/settings/theme.py
parentc7d5f14c01957e8aa4d3e0a9da1082280598c5e1 (diff)
better validation error reports
Diffstat (limited to 'alot/settings/theme.py')
-rw-r--r--alot/settings/theme.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/settings/theme.py b/alot/settings/theme.py
index ea154504..78f86fc5 100644
--- a/alot/settings/theme.py
+++ b/alot/settings/theme.py
@@ -39,7 +39,7 @@ class Theme(object):
indefault = set(threadline.sections)
diff = listed.difference(here.union(indefault))
if diff:
- msg = 'missing threadline parts: %s' % diff
+ msg = 'missing threadline parts: %s' % ', '.join(diff)
raise ConfigError(msg)
def get_attribute(self, colourmode, mode, name, part=None):