mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 19:44:52 +00:00
Yet another typo fix
This commit is contained in:
parent
6bc4caa4e6
commit
aa8d18c081
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ class TorrentOptions(dict):
|
|||
if super(TorrentOptions, self).has_key(key):
|
||||
return super(TorrentOptions, self).__getitem__(key)
|
||||
elif key in self.default_keys:
|
||||
if self.default_keys[key] in self.config:
|
||||
if self.default_keys[key] in self.config.config:
|
||||
return self.config[self.default_keys[key]]
|
||||
else:
|
||||
return self.default_keys[key]
|
||||
|
|
Loading…
Add table
Reference in a new issue