From 6d10cfb61609b16131760051331e9bd12531f988 Mon Sep 17 00:00:00 2001 From: Craig Warren Date: Thu, 26 Jan 2017 16:27:54 +0000 Subject: [PATCH] Remove backtrace limit. --- gprMax/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gprMax/exceptions.py b/gprMax/exceptions.py index 4f502289..d528ab73 100644 --- a/gprMax/exceptions.py +++ b/gprMax/exceptions.py @@ -21,7 +21,7 @@ import sys from colorama import init, Fore init() -sys.tracebacklimit = None +#sys.tracebacklimit = None class GeneralError(ValueError):