diff options
author | Tim Harder <radhermit@gmail.com> | 2021-02-26 15:26:45 -0700 |
---|---|---|
committer | Tim Harder <radhermit@gmail.com> | 2021-02-26 17:26:10 -0700 |
commit | 2cef8e358f12b65d4d230a0d8455dfb8b7fe35e6 (patch) | |
tree | d908cac895233c3cb419370b4405bb4dcae21e45 /src/pkgcheck/scripts | |
parent | pipeline: match variable naming between producer/consumer (diff) | |
download | pkgcheck-2cef8e358f12b65d4d230a0d8455dfb8b7fe35e6.tar.gz pkgcheck-2cef8e358f12b65d4d230a0d8455dfb8b7fe35e6.tar.bz2 pkgcheck-2cef8e358f12b65d4d230a0d8455dfb8b7fe35e6.zip |
move addons into separate subdir
Diffstat (limited to 'src/pkgcheck/scripts')
-rw-r--r-- | src/pkgcheck/scripts/argparse_actions.py | 2 | ||||
-rw-r--r-- | src/pkgcheck/scripts/pkgcheck_cache.py | 2 | ||||
-rw-r--r-- | src/pkgcheck/scripts/pkgcheck_show.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/pkgcheck/scripts/argparse_actions.py b/src/pkgcheck/scripts/argparse_actions.py index aa4bee33..8d6485f6 100644 --- a/src/pkgcheck/scripts/argparse_actions.py +++ b/src/pkgcheck/scripts/argparse_actions.py @@ -8,7 +8,7 @@ from snakeoil.mappings import ImmutableDict from snakeoil.strings import pluralism from .. import base, objects -from ..caches import CachedAddon +from ..addons.caches import CachedAddon from ..checks import NetworkCheck diff --git a/src/pkgcheck/scripts/pkgcheck_cache.py b/src/pkgcheck/scripts/pkgcheck_cache.py index 99351b04..a986bb2d 100644 --- a/src/pkgcheck/scripts/pkgcheck_cache.py +++ b/src/pkgcheck/scripts/pkgcheck_cache.py @@ -5,7 +5,7 @@ from snakeoil.osutils import pjoin from .. import base, const from ..addons import init_addon -from ..caches import CachedAddon +from ..addons.caches import CachedAddon from .argparse_actions import CacheNegations from .argparsers import repo_argparser diff --git a/src/pkgcheck/scripts/pkgcheck_show.py b/src/pkgcheck/scripts/pkgcheck_show.py index a981f70d..ca4355ee 100644 --- a/src/pkgcheck/scripts/pkgcheck_show.py +++ b/src/pkgcheck/scripts/pkgcheck_show.py @@ -6,7 +6,7 @@ from snakeoil.cli import arghparse from snakeoil.formatters import decorate_forced_wrapping from .. import base, objects -from ..caches import CachedAddon +from ..addons.caches import CachedAddon show = arghparse.ArgumentParser( prog='pkgcheck show', description='show various pkgcheck info') |