Skip to content

Commit

Permalink
Fixed RecursionError not being recognized for python runtimes < 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Syncrossus committed Oct 3, 2019
1 parent eda734a commit 566153c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions scopus_compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
from sublime import Region


class RecursionError(Exception):
def __init__(self, *args, **kwargs):
Exception.__init__(self, *args, **kwargs)


class CompileScopusQueryCommand(sublime_plugin.TextCommand):

def run(self, edit):
Expand Down

0 comments on commit 566153c

Please sign in to comment.