entities can be empty

This commit is contained in:
j 2014-12-26 12:19:36 +00:00
parent 0485a95b2f
commit 913599697e
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ def load_config():
c[part] = {}
c = c[part]
if isinstance(d, list):
if not c:
if not c and section not in ('entities', ):
c += d
sys.stderr.write("adding default value for %s = %s\n" % (
section, str(d)))