wrote docstring for get()

This commit is contained in:
Jimbo77 2012-11-18 20:30:56 -08:00
parent 0c29027f96
commit 4a85b9db62
1 changed files with 2 additions and 1 deletions

View File

@ -58,6 +58,7 @@ class SimpleConfig:
def get(self, key, default=None): def get(self, key, default=None):
"""Retrieve the filepath of the configuration file specified in the 'key' parameter."""
# 1. command-line options always override everything # 1. command-line options always override everything
if self.options_config.has_key(key) and self.options_config.get(key) is not None: if self.options_config.has_key(key) and self.options_config.get(key) is not None:
out = self.options_config.get(key) out = self.options_config.get(key)
@ -101,7 +102,7 @@ class SimpleConfig:
def read_system_config(self): def read_system_config(self):
"""Parse and store the system 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' name = '/etc/electrum.conf'
if os.path.exists(name): if os.path.exists(name):
try: try: