diff --git a/crlcore/python/CMakeLists.txt b/crlcore/python/CMakeLists.txt index dfa2e336..16b3ef91 100644 --- a/crlcore/python/CMakeLists.txt +++ b/crlcore/python/CMakeLists.txt @@ -1,5 +1,6 @@ install( FILES __init__.py DESTINATION ${Python_CORIOLISLIB} ) + install( FILES helpers/__init__.py DESTINATION ${Python_CORIOLISLIB}/helpers ) install( FILES helpers/io.py DESTINATION ${Python_CORIOLISLIB}/helpers ) install( FILES helpers/utils.py DESTINATION ${Python_CORIOLISLIB}/helpers ) diff --git a/tutorial/src/tutorial.py b/tutorial/src/tutorial.py index 7b5b4ee4..7a1387da 100755 --- a/tutorial/src/tutorial.py +++ b/tutorial/src/tutorial.py @@ -5,13 +5,13 @@ try: import sys import os.path import optparse - from coriolis import Cfg - from coriolis import Hurricane - from coriolis import Viewer - from coriolis import helpers.io - from coriolis import CRL - from coriolis import Unicorn - from coriolis import Tutorial + from coriolis import Cfg + from coriolis import Hurricane + from coriolis import Viewer + from coriolis import helpers.io + from coriolis import CRL + from coriolis import Unicorn + from coriolis import Tutorial except ImportError as e: serror = str(e) if serror.startswith('No module named'):