In documentation/examples, doChip now can be run through cgt.

This commit is contained in:
Jean-Paul Chaput 2018-03-19 17:09:30 +01:00
parent 8434b01457
commit d4913dfb22
1 changed files with 4 additions and 1 deletions

View File

@ -57,7 +57,10 @@ framework = CRL.AllianceFramework.get()
def ScriptMain ( **kw ):
success = False
doStages = kw['doStages']
if kw.has_key('doStages'):
doStages = kw['doStages']
else:
doStages = ChipStages
try:
cell, editor = plugins.kwParseMain( **kw )