[Common] Fix config missing value assignment

This commit is contained in:
Calum Lind 2018-09-30 14:56:28 +01:00
parent 67d9c2efb4
commit bcca07443c
1 changed files with 1 additions and 1 deletions

View File

@ -202,7 +202,7 @@ class Config(object):
raise
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))
self.__config[key] = value