mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-12 04:24:27 +00:00
[#3084] Fix error changing ownership on torrents
This commit is contained in:
parent
9164dafe69
commit
850fd34522
@ -715,7 +715,7 @@ class Core(component.Component):
|
||||
torrent_ids (list): A list of torrent_ids to set the options for.
|
||||
options (dict): A dict of torrent options to set. See torrent.TorrentOptions class for valid keys.
|
||||
"""
|
||||
if 'owner' in options and not self.core.authmanager.has_account(options['owner']):
|
||||
if 'owner' in options and not self.authmanager.has_account(options['owner']):
|
||||
raise DelugeError('Username "%s" is not known.' % options['owner'])
|
||||
|
||||
if isinstance(torrent_ids, str if not PY2 else basestring):
|
||||
|
Loading…
x
Reference in New Issue
Block a user