Fix: invalid plugin2 reference

This commit is contained in:
mrjk 2022-02-01 21:28:12 -05:00
parent 1c56c3235a
commit 9d6c83f50e
6 changed files with 6 additions and 6 deletions

View File

@ -6,7 +6,7 @@ import logging
from pathlib import Path from pathlib import Path
from prettytable import PrettyTable 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 from kheops.utils import render_template, render_template_python, str_ellipsis
log = logging.getLogger(__name__) log = logging.getLogger(__name__)

View File

@ -7,7 +7,7 @@ from pathlib import Path
import anyconfig import anyconfig
from kheops.utils import render_template, glob_files, render_template_python 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 from pprint import pprint
log = logging.getLogger(__name__) log = logging.getLogger(__name__)

View File

@ -3,7 +3,7 @@
import logging import logging
from kheops.plugin2.common import ScopePlugin, ScopeExtLoop from kheops.plugin.common import ScopePlugin, ScopeExtLoop
from kheops.utils import path_assemble_hier from kheops.utils import path_assemble_hier
log = logging.getLogger(__name__) log = logging.getLogger(__name__)

View File

@ -3,7 +3,7 @@
import copy import copy
import logging import logging
from kheops.plugin2.common import ScopePlugin, ScopeExtLoop from kheops.plugin.common import ScopePlugin, ScopeExtLoop
from kheops.utils import path_assemble_hier from kheops.utils import path_assemble_hier
log = logging.getLogger(__name__) log = logging.getLogger(__name__)

View File

@ -1,7 +1,7 @@
"""Last strategy Plugin""" """Last strategy Plugin"""
import logging import logging
from kheops.plugin2.common import StrategyPlugin from kheops.plugin.common import StrategyPlugin
log = logging.getLogger(__name__) log = logging.getLogger(__name__)

View File

@ -3,7 +3,7 @@
import logging import logging
from mergedeep import merge, Strategy from mergedeep import merge, Strategy
from kheops.plugin2.common import StrategyPlugin from kheops.plugin.common import StrategyPlugin
from pprint import pprint from pprint import pprint