try: import sys import os.path from helpers.io import ErrorMessage from helpers.io import WarningMessage import Viewer except ImportError as e: serror = str(e) if serror.startswith('No module named'): module = serror.split()[-1] print( '[ERROR] The <%s> python module or symbol cannot be loaded.' % module ) print( ' Please check the integrity of the package.' ) if str(e).find('cannot open shared object file'): library = serror.split(':')[0] print( '[ERROR] The <%s> shared library cannot be loaded.' % library ) print( ' Under RHEL 6, you must be under devtoolset-2.' ) print( ' (scl enable devtoolset-2 bash)' ) sys.exit(1) except Exception as e: print( '[ERROR] A strange exception occurred while loading the basic Coriolis/Python' ) print( ' modules. Something may be wrong at Python/C API level.\n' ) print( ' %s' % e ) sys.exit(2) def kiteHook ( **kw ): kite = None if 'kite' in kw: kite = kw['kite'] else: print( ErrorMessage( 3, 'kiteHook(): Must be run from a KiteEngine.' )) return userInit = os.path.join( os.getcwd(), '.coriolis2/kite.py' ) if (os.path.exists(userInit)): exec( open(userInit).read() ) return