Convert partition path string to a Path object (#2514)
This commit is contained in:
parent
09fdb9e80c
commit
63cfee434e
|
|
@ -407,7 +407,7 @@ class _PartitionInfo:
|
||||||
name=partition.get_name(),
|
name=partition.get_name(),
|
||||||
type=partition_type,
|
type=partition_type,
|
||||||
fs_type=fs_type,
|
fs_type=fs_type,
|
||||||
path=partition.path,
|
path=Path(partition.path),
|
||||||
start=start,
|
start=start,
|
||||||
length=length,
|
length=length,
|
||||||
flags=flags,
|
flags=flags,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue