Config validator needs to know that background_image is a string
This commit is contained in:
parent
c844184f9f
commit
68e25538a2
|
@ -487,6 +487,8 @@ class ConfigBase(Borg):
|
||||||
keytype = keymap[keytype]
|
keytype = keymap[keytype]
|
||||||
elif keytype == 'list':
|
elif keytype == 'list':
|
||||||
value = 'list(%s)' % ','.join(value)
|
value = 'list(%s)' % ','.join(value)
|
||||||
|
if key == 'background_image':
|
||||||
|
keytype = 'string'
|
||||||
if keytype == 'string':
|
if keytype == 'string':
|
||||||
value = '"%s"' % value
|
value = '"%s"' % value
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue