From 1caecf5a69d50dd1532cc96595ba4deee8722a66 Mon Sep 17 00:00:00 2001 From: mrg Date: Mon, 2 Nov 2020 10:44:49 -0800 Subject: [PATCH] Undo version and traceback --- compiler/globals.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/compiler/globals.py b/compiler/globals.py index 98196254..3ebb2c11 100644 --- a/compiler/globals.py +++ b/compiler/globals.py @@ -19,7 +19,7 @@ import re import copy import importlib -VERSION = "1.1.7" +VERSION = "1.1.6" NAME = "OpenRAM v{}".format(VERSION) USAGE = "openram.py [options] \nUse -h for help.\n" @@ -514,9 +514,7 @@ def import_tech(): sys.path.append(tech_path) try: import tech - except ImportError as e: - import traceback - traceback.print_exc() + except ImportError: debug.error("Could not load tech module.", -1) # Add custom modules of the technology to the path, if they exist