[Core] Remove redundant utf8 encoding

* Should only be encoding in config.py and this is already occurs.
This commit is contained in:
Calum Lind 2016-11-08 20:16:38 +00:00
parent bbe9de9463
commit b6e2ec3a3c
1 changed files with 0 additions and 2 deletions

View File

@ -565,8 +565,6 @@ class Core(component.Component):
for key in config.keys():
if self.read_only_config_keys and key in self.read_only_config_keys:
continue
if isinstance(config[key], basestring):
config[key] = config[key].encode('utf8')
self.config[key] = config[key]
@export