pull/1293/head
Michael Nguyen 2017-12-07 16:11:26 -06:00 committed by Steve Penrod
parent 0c430778cc
commit dada5b71aa
1 changed files with 2 additions and 1 deletions

View File

@ -207,7 +207,8 @@ class SkillSettings(dict):
for j, field in enumerate(section['fields']):
if 'name' in field:
if field["name"] in self:
sections[i]['fields'][j]['value'] = str(self[field['name']])
sections[i]['fields'][j]['value'] = \
str(self[field['name']])
meta['skillMetadata']['sections'] = sections
return meta