From 68e25538a2f96d6cfd818e1ccaaba3bd744044a0 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Thu, 19 Apr 2012 09:25:21 +0100 Subject: [PATCH] Config validator needs to know that background_image is a string --- terminatorlib/config.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/terminatorlib/config.py b/terminatorlib/config.py index fc9ed558..257c2bb3 100755 --- a/terminatorlib/config.py +++ b/terminatorlib/config.py @@ -487,6 +487,8 @@ class ConfigBase(Borg): keytype = keymap[keytype] elif keytype == 'list': value = 'list(%s)' % ','.join(value) + if key == 'background_image': + keytype = 'string' if keytype == 'string': value = '"%s"' % value