diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-01-18 14:22:46 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-19 17:24:48 +0000 |
commit | e7bedb91a7114dda22a97b57de6e98d7794d8a1e (patch) | |
tree | 038c6ef1c2cc16759fcd3599286dffae0d3b13c3 /scripts/lib | |
parent | 3bb6ea63fc2a1b5f7eb7023653de0880ff25f29d (diff) | |
download | poky-e7bedb91a7114dda22a97b57de6e98d7794d8a1e.tar.gz |
wic: rename kickstarter.py -> ksparser.py
kickstarter.py was not the best name for this module as previously
there was a directory with the same name in scripts/lib/wic/.
All files were removed from it, but .pyc files could still stay there
causing imports from wic.kickstart to fail with
ImportError: cannot import name KickStart.
(From OE-Core rev: b9d400be06bc4a4bb9f9c6a6a0c8e5ecfd4e2dfb)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib')
-rw-r--r-- | scripts/lib/wic/conf.py | 2 | ||||
-rw-r--r-- | scripts/lib/wic/ksparser.py (renamed from scripts/lib/wic/kickstart.py) | 0 |
2 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/wic/conf.py b/scripts/lib/wic/conf.py index 922a0f68e6..f7d56d046b 100644 --- a/scripts/lib/wic/conf.py +++ b/scripts/lib/wic/conf.py | |||
@@ -17,7 +17,7 @@ | |||
17 | 17 | ||
18 | import os | 18 | import os |
19 | 19 | ||
20 | from wic.kickstart import KickStart, KickStartError | 20 | from wic.ksparser import KickStart, KickStartError |
21 | from wic import msger | 21 | from wic import msger |
22 | from wic.utils import misc | 22 | from wic.utils import misc |
23 | 23 | ||
diff --git a/scripts/lib/wic/kickstart.py b/scripts/lib/wic/ksparser.py index 7dbe052714..7dbe052714 100644 --- a/scripts/lib/wic/kickstart.py +++ b/scripts/lib/wic/ksparser.py | |||