summaryrefslogtreecommitdiffstats
path: root/scripts/lib/wic/plugins/imager/direct.py
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2017-02-14 23:47:06 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-04 23:18:17 +0000
commitaf17aa91b32421100d8898a7c95049068e8e0e26 (patch)
treed322e68977a5626ad04ac119bc565b829e02f530 /scripts/lib/wic/plugins/imager/direct.py
parent8da175607c0d3434428a3bf4ee1549919b698709 (diff)
downloadpoky-af17aa91b32421100d8898a7c95049068e8e0e26.tar.gz
wic: raise WicError instead of ImageError and CreatorError
There is no need to raise special exceptions. Raising WicError should be enough. (From OE-Core rev: b952076cc9f458c3d5eb03e12dc3ec316a44804c) 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/plugins/imager/direct.py')
-rw-r--r--scripts/lib/wic/plugins/imager/direct.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/lib/wic/plugins/imager/direct.py b/scripts/lib/wic/plugins/imager/direct.py
index 9c8a2304a7..5b20ca9c5b 100644
--- a/scripts/lib/wic/plugins/imager/direct.py
+++ b/scripts/lib/wic/plugins/imager/direct.py
@@ -32,7 +32,7 @@ import uuid
32 32
33from time import strftime 33from time import strftime
34 34
35from wic.errors import ImageError, WicError 35from wic.errors import WicError
36from wic.filemap import sparse_copy 36from wic.filemap import sparse_copy
37from wic.ksparser import KickStart, KickStartError 37from wic.ksparser import KickStart, KickStartError
38from wic.plugin import pluginmgr 38from wic.plugin import pluginmgr
@@ -355,8 +355,8 @@ class PartitionedImage():
355 # The --part-type can also be implemented for MBR partitions, 355 # The --part-type can also be implemented for MBR partitions,
356 # in which case it would map to the 1-byte "partition type" 356 # in which case it would map to the 1-byte "partition type"
357 # filed at offset 3 of the partition entry. 357 # filed at offset 3 of the partition entry.
358 raise ImageError("setting custom partition type is not " \ 358 raise WicError("setting custom partition type is not " \
359 "implemented for msdos partitions") 359 "implemented for msdos partitions")
360 360
361 # Get the disk where the partition is located 361 # Get the disk where the partition is located
362 self.numpart += 1 362 self.numpart += 1