diff --git a/kheops/controllers.py b/kheops/controllers.py index b9eebc4..dfd6cd1 100644 --- a/kheops/controllers.py +++ b/kheops/controllers.py @@ -6,7 +6,7 @@ import logging from pathlib import Path from prettytable import PrettyTable -import kheops.plugin2 as KheopsPlugins +import kheops.plugin as KheopsPlugins from kheops.utils import render_template, render_template_python, str_ellipsis log = logging.getLogger(__name__) diff --git a/kheops/plugin/backend/file.py b/kheops/plugin/backend/file.py index 6ae79da..2674c00 100644 --- a/kheops/plugin/backend/file.py +++ b/kheops/plugin/backend/file.py @@ -7,7 +7,7 @@ from pathlib import Path import anyconfig from kheops.utils import render_template, glob_files, render_template_python -from kheops.plugin2.common import BackendPlugin, BackendCandidate +from kheops.plugin.common import BackendPlugin, BackendCandidate from pprint import pprint log = logging.getLogger(__name__) diff --git a/kheops/plugin/scope/hier.py b/kheops/plugin/scope/hier.py index 37f23a0..ce5602c 100644 --- a/kheops/plugin/scope/hier.py +++ b/kheops/plugin/scope/hier.py @@ -3,7 +3,7 @@ import logging -from kheops.plugin2.common import ScopePlugin, ScopeExtLoop +from kheops.plugin.common import ScopePlugin, ScopeExtLoop from kheops.utils import path_assemble_hier log = logging.getLogger(__name__) diff --git a/kheops/plugin/scope/loop.py b/kheops/plugin/scope/loop.py index 270d0aa..c1267fe 100644 --- a/kheops/plugin/scope/loop.py +++ b/kheops/plugin/scope/loop.py @@ -3,7 +3,7 @@ import copy import logging -from kheops.plugin2.common import ScopePlugin, ScopeExtLoop +from kheops.plugin.common import ScopePlugin, ScopeExtLoop from kheops.utils import path_assemble_hier log = logging.getLogger(__name__) diff --git a/kheops/plugin/strategy/last.py b/kheops/plugin/strategy/last.py index f2c1d6a..cc85f47 100644 --- a/kheops/plugin/strategy/last.py +++ b/kheops/plugin/strategy/last.py @@ -1,7 +1,7 @@ """Last strategy Plugin""" import logging -from kheops.plugin2.common import StrategyPlugin +from kheops.plugin.common import StrategyPlugin log = logging.getLogger(__name__) diff --git a/kheops/plugin/strategy/merge_deep.py b/kheops/plugin/strategy/merge_deep.py index e2a7271..d655a01 100644 --- a/kheops/plugin/strategy/merge_deep.py +++ b/kheops/plugin/strategy/merge_deep.py @@ -3,7 +3,7 @@ import logging from mergedeep import merge, Strategy -from kheops.plugin2.common import StrategyPlugin +from kheops.plugin.common import StrategyPlugin from pprint import pprint