mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
[Common] Fix config missing value assignment
This commit is contained in:
parent
67d9c2efb4
commit
bcca07443c
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue