From 6acc8c89028fd8f8d8aa65488b5fcfd4284ef59c Mon Sep 17 00:00:00 2001 From: Jesse Cirimelli-Low Date: Thu, 3 Jan 2019 13:41:25 -0800 Subject: [PATCH] removed print debug statement --- compiler/characterizer/lib.py | 1 - 1 file changed, 1 deletion(-) diff --git a/compiler/characterizer/lib.py b/compiler/characterizer/lib.py index 0ed7b3e6..ae1d3c82 100644 --- a/compiler/characterizer/lib.py +++ b/compiler/characterizer/lib.py @@ -510,7 +510,6 @@ class lib: git_id = 'AAAAAAAAAAAAAAAAAAAA' else: with open(os.devnull, 'wb') as devnull: - print(os.path.abspath(os.environ.get("OPENRAM_HOME")) + '/') proc = subprocess.Popen(['git','rev-parse','HEAD'], cwd=os.path.abspath(os.environ.get("OPENRAM_HOME")) + '/', stdout=subprocess.PIPE) git_id = str(proc.stdout.read())