Change number of arguments check in prefixGDS.py

This commit is contained in:
mrg 2021-06-22 16:15:31 -07:00
parent c69eb47a7a
commit 04382a2271
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
import sys import sys
from gdsMill import gdsMill 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("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])) print("Usage: {0} in.gds out.gds".format(sys.argv[0]))
sys.exit(1) sys.exit(1)