From db33acf848aa519d12707a199d430affa9a00c15 Mon Sep 17 00:00:00 2001 From: Randolf Beerwerth <r.beerwerth@fz-juelich.de> Date: Mon, 27 Apr 2020 18:04:46 +0200 Subject: [PATCH] Fix python import problem --- Wrap/python/__init__.py.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Wrap/python/__init__.py.in b/Wrap/python/__init__.py.in index 38ee0f5a9f6..6ee593b40aa 100644 --- a/Wrap/python/__init__.py.in +++ b/Wrap/python/__init__.py.in @@ -7,8 +7,8 @@ sys.path.append(os.path.abspath( # this line needed to fix python3 import problem sys.path.append(os.path.abspath(os.path.dirname(__file__))) -from .libBornAgainFit import * -from .libBornAgainCore import * +from libBornAgainFit import * +from libBornAgainCore import * # To prevent inclusion of plotting tools during functional tests: -- GitLab