From 5e76b8caab28fb353e0e42b175f4a1d94fa09607 Mon Sep 17 00:00:00 2001 From: thomasv Date: Fri, 12 Oct 2012 11:26:30 +0200 Subject: [PATCH] fix type for settings in configuration file --- lib/simple_config.py | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/lib/simple_config.py b/lib/simple_config.py index 014726d..f2ba068 100644 --- a/lib/simple_config.py +++ b/lib/simple_config.py @@ -72,12 +72,19 @@ class SimpleConfig: # 2. configuration file overrides wallet file elif self.common_config.has_key(key): out = self.common_config.get(key) - + + # 3. use the wallet file config else: out = self.wallet_config.get(key) if out is None and default is not None: out = default + + # try to fix the type + if default is not None and type(out) != type(default): + import ast + out = ast.literal_eval(out) + return out -- 1.7.1