From ca4f4b2ecbc184ea7e50a7ae7b57a773160ad61e Mon Sep 17 00:00:00 2001 From: Vojtech Trefny Date: Wed, 10 Apr 2024 17:08:20 +0200 Subject: [PATCH] fix: Fix incorrent populate call `populate()` is method of DeviceTree, not Blivet. --- library/blivet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/blivet.py b/library/blivet.py index 18807de9..d82b86b5 100644 --- a/library/blivet.py +++ b/library/blivet.py @@ -630,7 +630,7 @@ def _look_up_device(self): device.original_format._key_file = self._volume.get('encryption_key') device.original_format.passphrase = self._volume.get('encryption_password') if device.isleaf: - self._blivet.populate() + self._blivet.devicetree.populate() if not device.isleaf: device = device.children[0]