Inside temp removed, so far. Outside temp not displayed bug fixed

This commit is contained in:
2019-08-25 22:14:15 +02:00
parent 7a3890e45e
commit 5b4509709f
4 changed files with 28 additions and 85 deletions

View File

@@ -155,7 +155,7 @@ class serverConfiguration(object):
return False
self.val = {}
for line in config_list:
if line.strip() != '':
if line.strip() != '' and '[' not in line.strip():
try:
line = line.split("=")
option = line[0].strip().strip("'")