diff options
-rw-r--r-- | scripts/lib/wic/plugins/imager/direct.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/wic/plugins/imager/direct.py b/scripts/lib/wic/plugins/imager/direct.py index 7d38ab34fb..67fd183670 100644 --- a/scripts/lib/wic/plugins/imager/direct.py +++ b/scripts/lib/wic/plugins/imager/direct.py | |||
@@ -323,7 +323,7 @@ class PartitionedImage(): | |||
323 | if self.ptable_format == 'gpt': | 323 | if self.ptable_format == 'gpt': |
324 | part.uuid = str(uuid.uuid4()) | 324 | part.uuid = str(uuid.uuid4()) |
325 | else: # msdos partition table | 325 | else: # msdos partition table |
326 | part.uuid = '%0x-%02d' % (self.identifier, part.realnum) | 326 | part.uuid = '%08x-%02d' % (self.identifier, part.realnum) |
327 | 327 | ||
328 | def prepare(self, imager): | 328 | def prepare(self, imager): |
329 | """Prepare an image. Call prepare method of all image partitions.""" | 329 | """Prepare an image. Call prepare method of all image partitions.""" |