Fixed wrong variable name.

Summary: Fixed wrong name of variable

Reviewers: leif

Differential Revision: https://phab.enlightenment.org/D478
This commit is contained in:
Matthias Wauer 2014-01-20 15:20:28 +01:00 committed by Leif Middelschulte
parent e09e422862
commit d648f6ae47
1 changed files with 1 additions and 1 deletions

View File

@ -294,7 +294,7 @@ def config_set(name, key, value):
if value != None:
configs.set(secname, key, value)
elif configs.has_option(secname, key):
configs.remove_option(sec, key)
configs.remove_option(secname, key)
config_write(name)
def config_get(name):