From 1c7cbbe6f72d2668910bf5259bba8b30eb601a54 Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Fri, 6 May 2016 17:42:05 +0200 Subject: [PATCH] Typo in error message raising an exception. --- crlcore/python/helpers/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crlcore/python/helpers/__init__.py b/crlcore/python/helpers/__init__.py index 982139f2..f437de58 100644 --- a/crlcore/python/helpers/__init__.py +++ b/crlcore/python/helpers/__init__.py @@ -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' )