Skip to content

Commit

Permalink
Filebot error passed to user for debuging (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
Laharah committed May 27, 2017
1 parent ffeb8e5 commit a6ffa70
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions filebottool/core.py
Expand Up @@ -94,9 +94,9 @@ def enable(self):
self.filebot_version = pyfilebot.get_version()
log.info("Filebot Found with version {0}".format(
self.filebot_version))
except pyfilebot.FilebotFatalError as e:
except pyfilebot.Error as e:
log.error('FilebotFatalError ' + str(e))
self.filebot_version = None
self.filebot_version = str(e)

self.torrent_manager = component.get("TorrentManager")
self.listening_dictionary = {}
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.1.9"
__version__ = "1.1.9-debug"
__url__ = "https://github.com/Laharah/deluge-FileBotTool"
__license__ = "GPLv3"
__description__ = "Integrates FileBot functionality to Deluge"
Expand Down

0 comments on commit a6ffa70

Please sign in to comment.