1
0
Fork 0
mirror of https://github.com/yweber/lodel2.git synced 2025-11-25 06:46:55 +01:00

Syntax errors fixed

This commit is contained in:
Roland Haroutiounian 2016-06-24 09:57:40 +02:00
commit 42ddd6909b

View file

@ -156,9 +156,9 @@ class SettingsLoader(object):
if sections == [] and default_section:
sections.append(section_prefix + '.' + default_section)
elif sections == []:
raise NameError("Not existing settings section : %s" % section__prefix)
raise NameError("Not existing settings section : %s" % section_prefix)
return sections;
return sections
##@brief Returns invalid settings
#