Fix library path in globals.setup_paths()

This commit is contained in:
Eren Dogan 2022-11-10 21:50:31 -08:00
parent a5aea64b09
commit f95ff3c694
1 changed files with 1 additions and 1 deletions

View File

@ -440,7 +440,7 @@ def setup_paths():
"Source code at this path will be used as library.")
except:
import openram
OPENRAM_HOME = os.path.dirname(openram.__file__ + "/compiler")
OPENRAM_HOME = os.path.dirname(openram.__file__) + "/compiler"
# Add this directory to os.environ here
os.environ["OPENRAM_HOME"] = OPENRAM_HOME