From 64062536ce10dcf70ca96d1b25c7330388941269 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Fri, 11 Apr 2008 14:56:54 +0100 Subject: [PATCH] try not to parse most rc settings as False --- terminatorconfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminatorconfig.py b/terminatorconfig.py index 12a3b78e..8f8632de 100755 --- a/terminatorconfig.py +++ b/terminatorconfig.py @@ -143,7 +143,7 @@ class TerminatorConfValuestoreRC (TerminatorConfValuestore): dbg (" VS_RCFile: Setting value %s to %s"%(key, value)) if value == 'True': self.values[key] = True - else: + elif value == 'False': self.values[key] = False except: dbg (" VS_RCFile: Exception handling: %s"%item)