Undo version and traceback

This commit is contained in:
mrg 2020-11-02 10:44:49 -08:00
parent bb164d915d
commit 1caecf5a69
1 changed files with 2 additions and 4 deletions

View File

@ -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] <config file>\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