Merge "Fix default value handling"

This commit is contained in:
Jenkins 2013-07-30 12:04:02 +00:00 committed by Gerrit Code Review
commit ca02eb3e6c
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ def parse_configs_from_context(context, defaults):
config = key_split[2]
if service not in configs_dict:
configs_dict[service] = dict()
if defaults[service][config] == val:
if unicode(defaults[service][config]) == unicode(val):
continue
configs_dict[service][config] = val
return configs_dict