From 04382a2271e7b0a39e43a9bcead88639bdf5b710 Mon Sep 17 00:00:00 2001 From: mrg Date: Tue, 22 Jun 2021 16:15:31 -0700 Subject: [PATCH] Change number of arguments check in prefixGDS.py --- compiler/prefixGDS.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/prefixGDS.py b/compiler/prefixGDS.py index e6bfdb40..70a5e5c9 100755 --- a/compiler/prefixGDS.py +++ b/compiler/prefixGDS.py @@ -3,7 +3,7 @@ import sys from gdsMill import gdsMill -if len(sys.argv) < 4: +if len(sys.argv) < 3: print("Script to prefix every instance and structure with the root cell name to provide unique namespace.") print("Usage: {0} in.gds out.gds".format(sys.argv[0])) sys.exit(1)