Commit e4743efa authored by Luke Macken's avatar Luke Macken

Ignore TokenErrors from our Stacks tab

parent e50ab449
...@@ -766,8 +766,8 @@ class PyrasiteWindow(Gtk.Window): ...@@ -766,8 +766,8 @@ class PyrasiteWindow(Gtk.Window):
if is_decorator is True: if is_decorator is True:
is_decorator = False is_decorator = False
except Exception, e: except tokenize.TokenError:
log.exception(str(e)) pass
def close(self): def close(self):
self.progress.show() self.progress.show()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment