From 68847a9bb9d01eaadb89659b23a785726baf3754 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Wed, 17 Oct 2012 15:33:15 -0700 Subject: [PATCH] Fix up custom_url_handler to not show as invalid --- terminatorlib/config.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/terminatorlib/config.py b/terminatorlib/config.py index 2c05db27..54154bac 100755 --- a/terminatorlib/config.py +++ b/terminatorlib/config.py @@ -474,6 +474,9 @@ class ConfigBase(Borg): keytype = '%s(default=%s)' % (keytype, value) + if key == 'custom_url_handler': + keytype = 'string(default="")' + section[key] = keytype configspecdata['global_config'] = section