From 3380e20e3aad6903172c07e989f64252f6160593 Mon Sep 17 00:00:00 2001 From: Dean Gardiner Date: Sat, 8 Feb 2014 03:25:11 +1300 Subject: [PATCH] Cleaned up naming of functions in rtorrent downloader --- couchpotato/core/downloaders/rtorrent/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/couchpotato/core/downloaders/rtorrent/main.py b/couchpotato/core/downloaders/rtorrent/main.py index 4fdecc89..1fbae354 100755 --- a/couchpotato/core/downloaders/rtorrent/main.py +++ b/couchpotato/core/downloaders/rtorrent/main.py @@ -64,7 +64,7 @@ class rTorrent(Downloader): return self.rt - def _update_provider_group(self, name, data): + def updateProviderGroup(self, name, data): if data.get('seed_time'): log.info('seeding time ignored, not supported') @@ -113,7 +113,7 @@ class rTorrent(Downloader): return False group_name = 'cp_' + data.get('provider').lower() - if not self._update_provider_group(group_name, data): + if not self.updateProviderGroup(group_name, data): return False torrent_params = {}