aboutsummaryrefslogtreecommitdiffstats
path: root/IRC/getconf.py
diff options
context:
space:
mode:
Diffstat (limited to 'IRC/getconf.py')
-rw-r--r--IRC/getconf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/IRC/getconf.py b/IRC/getconf.py
index d6e9f42..f9cd440 100644
--- a/IRC/getconf.py
+++ b/IRC/getconf.py
@@ -8,12 +8,12 @@ import os
def make_getconf(filename):
- config = load_config(filename)
def getconf(prop):
prop_split = prop.split('.')
string = ''
- imp.reload(config)
+ config = load_config(filename)
+ #imp.reload(config)
tmp = config.__dict__
for pr in prop_split:
tmp = tmp[pr]