Eliminate core dependency on 'terminal' plugin

This commit is contained in:
Ilya Konstantinov
2019-04-17 11:19:19 -07:00
parent 9eac4733c5
commit d67d68f6d3
7 changed files with 20 additions and 11 deletions

View File

@@ -699,7 +699,7 @@ class Config(object):
return self
def notify_exception(self, excinfo, option=None):
if option and option.fulltrace:
if option and getattr(option, "fulltrace", False):
style = "long"
else:
style = "native"