Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
fix bug
  • Loading branch information
patois authored May 27, 2020
1 parent 4be72cd commit fd9f0fe
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions abyss.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,11 @@ def run(self, arg):
load_filters(reload=True)

def term(self):
self.ui_hooks.unhook()
self.hr_hooks.unhook()
try:
self.ui_hooks.unhook()
self.hr_hooks.unhook()
except:
pass

def PLUGIN_ENTRY():
return abyss_plugin_t()

0 comments on commit fd9f0fe

Please sign in to comment.