From 63cfee434e9d3435855d4dec80dee5d6cc441804 Mon Sep 17 00:00:00 2001 From: codefiles <11915375+codefiles@users.noreply.github.com> Date: Sat, 18 May 2024 18:04:48 -0400 Subject: [PATCH] Convert partition path string to a Path object (#2514) --- archinstall/lib/disk/device_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archinstall/lib/disk/device_model.py b/archinstall/lib/disk/device_model.py index f98d05fb..224a9833 100644 --- a/archinstall/lib/disk/device_model.py +++ b/archinstall/lib/disk/device_model.py @@ -407,7 +407,7 @@ class _PartitionInfo: name=partition.get_name(), type=partition_type, fs_type=fs_type, - path=partition.path, + path=Path(partition.path), start=start, length=length, flags=flags,