Skip to content

Commit

Permalink
Write name value to db for options
Browse files Browse the repository at this point in the history
  • Loading branch information
greghaynes committed May 27, 2010
1 parent 510bead commit 1c412f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyscripts/xsbs/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def loadPluginConfig(cfg_dict, plugin):
if len(options) == 0:
for section, sectdict in cfg_dict.items():
for option, value in sectdict.items():
db_opt = ConfigOption(plugin=plugin, section=section, option=option, value=value)
db_opt = ConfigOption(plugin=plugin, section=section, name=option, value=value)
session.commit()
else:
for option in options:
Expand Down

0 comments on commit 1c412f9

Please sign in to comment.