tcreated docstring for read_user_config() - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit 0c29027f960049d3fef7b4c8162a34568fc9f86f
DIR parent 71a4bb019826168f7e342123f534ad806bd5c208
HTML Author: Jimbo77 <onlineregular@gmail.com>
Date: Sun, 18 Nov 2012 18:58:35 -0800
created docstring for read_user_config()
Diffstat:
M lib/simple_config.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
---
DIR diff --git a/lib/simple_config.py b/lib/simple_config.py
t@@ -101,7 +101,7 @@ class SimpleConfig:
def read_system_config(self):
- """Parse and store the config settings in electrum.conf into system_config[]"""
+ """Parse and store the system config settings in electrum.conf into system_config[]"""
name = '/etc/electrum.conf'
if os.path.exists(name):
try:
t@@ -120,6 +120,7 @@ class SimpleConfig:
def read_user_config(self):
+ """Parse and store the user config settings in electrum.conf into user_config[]."""
if not self.user_dir: return
name = os.path.join( self.user_dir, 'electrum.conf')