Skip to content

Commit

Permalink
Fix for script not found when erverting
Browse files Browse the repository at this point in the history
  • Loading branch information
Laharah committed Feb 27, 2019
1 parent 299049b commit 1868202
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 1.2.5**
**Version 1.2.6**

##### [Download Latest Release](https://github.com/Laharah/deluge-FilebotTool/releases/latest)

Expand Down
2 changes: 1 addition & 1 deletion filebottool/pyfilebot.py
Expand Up @@ -342,7 +342,7 @@ def revert(targets):
if isinstance(targets, basestring):
targets = [targets]
targets = [os.path.expanduser(os.path.expandvars(target)) for target in targets]
filebot_arguments = _build_arguments(targets, mode='revert')
filebot_arguments = _build_filebot_arguments(targets, mode='revert')

exit_code, data, error = _execute(filebot_arguments, workaround=False)
if exit_code != 0:
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__ = "1.2.5"
__version__ = "1.2.6"
__url__ = "https://github.com/Laharah/deluge-FileBotTool"
__license__ = "GPLv3"
__description__ = "Integrates FileBot functionality to Deluge"
Expand Down

0 comments on commit 1868202

Please sign in to comment.