From 58341a07987b0e561ac1ce3f0f066bf406211d64 Mon Sep 17 00:00:00 2001 From: David Lehman Date: Tue, 15 Oct 2019 07:36:15 -0400 Subject: [PATCH] Fix key for partition pool class lookup. --- library/blivet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/blivet.py b/library/blivet.py index 55d27f08..cd644e5b 100644 --- a/library/blivet.py +++ b/library/blivet.py @@ -537,7 +537,7 @@ def _create(self): _BLIVET_POOL_TYPES = { - "disk": BlivetPartitionPool, + "partition": BlivetPartitionPool, "lvm": BlivetLVMPool }