diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2017-02-15 21:24:38 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-04 23:18:17 +0000 |
commit | 0c0ed61992c248a2427d0eb9905939e05c9de5b0 (patch) | |
tree | 9d67bab2e0e5ce94949696f2e14fc67526f302c2 /scripts/lib/wic/help.py | |
parent | 93b3eb37ff623f84b5b9c843353d3e2b406687ad (diff) | |
download | poky-0c0ed61992c248a2427d0eb9905939e05c9de5b0.tar.gz |
wic: move PluginMgr class to pluginbase
As PluginMgr class contains only one method it's
better to move it to pluginbase to have all plugin
related APIs in one module.
(From OE-Core rev: 244585b369ecc0019002ca51bf7f8fd506234462)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/wic/help.py')
-rw-r--r-- | scripts/lib/wic/help.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/wic/help.py b/scripts/lib/wic/help.py index c08ad34ae5..148da89e0a 100644 --- a/scripts/lib/wic/help.py +++ b/scripts/lib/wic/help.py | |||
@@ -28,7 +28,7 @@ | |||
28 | import subprocess | 28 | import subprocess |
29 | import logging | 29 | import logging |
30 | 30 | ||
31 | from wic.plugin import PluginMgr, PLUGIN_TYPES | 31 | from wic.pluginbase import PluginMgr, PLUGIN_TYPES |
32 | 32 | ||
33 | logger = logging.getLogger('wic') | 33 | logger = logging.getLogger('wic') |
34 | 34 | ||