Skip to content

Commit

Permalink
fixed bug with subs downloading on torrents that did not re-seed
Browse files Browse the repository at this point in the history
 version bump
  • Loading branch information
Laharah committed Mar 28, 2016
1 parent d74dfe6 commit 94477eb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 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)

Expand Down
2 changes: 1 addition & 1 deletion filebottool/core.py
Expand Up @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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"
Expand Down

0 comments on commit 94477eb

Please sign in to comment.