From 712ef8c93ba0fd288d1479b74ed066479e163059 Mon Sep 17 00:00:00 2001 From: Zomnut Date: Fri, 29 Nov 2013 09:50:54 -0500 Subject: [PATCH] Fix for resetting options to default on program start when in portable mode. --- lib/simple_config.py | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/lib/simple_config.py b/lib/simple_config.py index 1ae6579..127b480 100644 --- a/lib/simple_config.py +++ b/lib/simple_config.py @@ -30,8 +30,7 @@ a SimpleConfig instance then reads the wallet file. # user conf, writeable self.user_config = {} - if options.get('portable') == False: - self.read_user_config() + self.read_user_config() -- 1.7.1