[#3084] Fix error changing ownership on torrents

This commit is contained in:
Calum Lind 2017-06-29 15:07:11 +01:00
parent 9164dafe69
commit 850fd34522
1 changed files with 1 additions and 1 deletions

View File

@ -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):