From 850fd34522992826984d616d4353d4d79c9d130b Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Thu, 29 Jun 2017 15:07:11 +0100 Subject: [PATCH] [#3084] Fix error changing ownership on torrents --- deluge/core/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/core/core.py b/deluge/core/core.py index f495249b5..71b7a3130 100644 --- a/deluge/core/core.py +++ b/deluge/core/core.py @@ -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):