Typo in error message raising an exception.

This commit is contained in:
Jean-Paul Chaput 2016-05-06 17:42:05 +02:00
parent babf23f303
commit 1c7cbbe6f7
1 changed files with 2 additions and 2 deletions

View File

@ -267,11 +267,11 @@ def initTechno ( quiet ):
if moduleGlobals.has_key('symbolicTechnology'):
symbolicTechno = symbolicTechnology
else:
print '[WARNING] The symbolic technology name is not set. Using <%s>.' % symbolicTechnology
print '[WARNING] The symbolic technology name is not set. Using <%s>.' % symbolicTechno
if moduleGlobals.has_key('realTechnology'):
realTechno = realTechnology
else:
print '[WARNING] The real technology name is not set. Using <%s>.' % realTechnology
print '[WARNING] The real technology name is not set. Using <%s>.' % realTechno
if moduleGlobals.has_key('NdaDirectory'):
ndaConfDir = os.path.join( NdaDirectory, 'etc/coriolis2' )