From 94477eb28ba1a188da9ae611ec3ccf3e74b8a466 Mon Sep 17 00:00:00 2001 From: laharah Date: Sun, 27 Mar 2016 20:08:00 -0700 Subject: [PATCH] fixed bug with subs downloading on torrents that did not re-seed version bump --- README.md | 2 +- filebottool/core.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 58bad22..3eeb500 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ #FilebotTool: FileBot Integration for Deluge *requires [Filebot](http://www.filebot.net/)* -**Version Beta 0.8.7** +**Version Beta 0.9.1** #####[Download Latest Release](https://github.com/Laharah/deluge-FilebotTool/releases/latest) diff --git a/filebottool/core.py b/filebottool/core.py index 623f779..ac3a023 100755 --- a/filebottool/core.py +++ b/filebottool/core.py @@ -611,7 +611,7 @@ def do_rename(self, torrent_ids, handler_settings=None, handler=None): deluge_movements = self._translate_filebot_movements(torrent_id, filebot_results[1]) mock = self._get_mockup_files_dictionary(torrent_id, deluge_movements) - new_save = deluge_movements[0] + new_save = deluge_movements[0] if deluge_movements else None if not new_save: torrent = self.torrent_manager[torrent_id] new_save = torrent.get_status(["save_path"])["save_path"] diff --git a/setup.py b/setup.py index 54b683c..aafc870 100755 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ __plugin_name__ = "FileBotTool" __author__ = "laharah" __author_email__ = "laharah+fbt@gmail.com" -__version__ = "0.9.0" +__version__ = "0.9.1" __url__ = "https://github.com/Laharah/deluge-FileBotTool" __license__ = "GPLv3" __description__ = "Integrates FileBot functionality to Deluge"