diff --git a/filebottool/core.py b/filebottool/core.py index 69041d5..79630b5 100755 --- a/filebottool/core.py +++ b/filebottool/core.py @@ -388,7 +388,8 @@ def _get_full_os_path(save_path, deluge_path): sp = save_path.split(os.path.sep) if sp[-1] == '': sp = sp[:-1] - return os.path.sep.join(sp + deluge_path.split('/')) + combined = os.path.sep.join(sp + deluge_path.split('/')) + return os.path.abspath(combined) @staticmethod def _configure_filebot_handler(settings, handler=None): diff --git a/setup.py b/setup.py index a2e8575..46f9056 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.6" +__version__ = "1.2.7" __url__ = "https://github.com/Laharah/deluge-FileBotTool" __license__ = "GPLv3" __description__ = "Integrates FileBot functionality to Deluge"