summaryrefslogtreecommitdiffstats
path: root/scripts/lib/wic/imager/baseimager.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/lib/wic/imager/baseimager.py')
-rw-r--r--scripts/lib/wic/imager/baseimager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/wic/imager/baseimager.py b/scripts/lib/wic/imager/baseimager.py
index acbe948584..760cf8a58a 100644
--- a/scripts/lib/wic/imager/baseimager.py
+++ b/scripts/lib/wic/imager/baseimager.py
@@ -85,7 +85,7 @@ class BaseImageCreator(object):
85 # No ks provided when called by convertor, so skip the dependency check 85 # No ks provided when called by convertor, so skip the dependency check
86 if self.ks: 86 if self.ks:
87 # If we have btrfs partition we need to check necessary tools 87 # If we have btrfs partition we need to check necessary tools
88 for part in self.ks.handler.partition.partitions: 88 for part in self.ks.partitions:
89 if part.fstype and part.fstype == "btrfs": 89 if part.fstype and part.fstype == "btrfs":
90 self._dep_checks.append("mkfs.btrfs") 90 self._dep_checks.append("mkfs.btrfs")
91 break 91 break