[Common] Fix config missing value assignment
This commit is contained in:
parent
67d9c2efb4
commit
bcca07443c
|
@ -202,7 +202,7 @@ class Config(object):
|
||||||
raise
|
raise
|
||||||
|
|
||||||
if isinstance(value, bytes):
|
if isinstance(value, bytes):
|
||||||
value.decode('utf8')
|
value = value.decode('utf8')
|
||||||
|
|
||||||
log.debug('Setting key "%s" to: %s (of type: %s)', key, value, type(value))
|
log.debug('Setting key "%s" to: %s (of type: %s)', key, value, type(value))
|
||||||
self.__config[key] = value
|
self.__config[key] = value
|
||||||
|
|
Loading…
Reference in New Issue