diff --git a/README.md b/README.md index 3a030c4..352b30b 100644 --- a/README.md +++ b/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) diff --git a/filebottool/pyfilebot.py b/filebottool/pyfilebot.py index 01ec0c8..fb431f0 100644 --- a/filebottool/pyfilebot.py +++ b/filebottool/pyfilebot.py @@ -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: diff --git a/setup.py b/setup.py index 7980a20..a2e8575 100755 --- a/setup.py +++ b/setup.py @@ -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"