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 copy
import importlib import importlib
VERSION = "1.1.7" VERSION = "1.1.6"
NAME = "OpenRAM v{}".format(VERSION) NAME = "OpenRAM v{}".format(VERSION)
USAGE = "openram.py [options] <config file>\nUse -h for help.\n" USAGE = "openram.py [options] <config file>\nUse -h for help.\n"
@ -514,9 +514,7 @@ def import_tech():
sys.path.append(tech_path) sys.path.append(tech_path)
try: try:
import tech import tech
except ImportError as e: except ImportError:
import traceback
traceback.print_exc()
debug.error("Could not load tech module.", -1) debug.error("Could not load tech module.", -1)
# Add custom modules of the technology to the path, if they exist # Add custom modules of the technology to the path, if they exist