Skip to content

Commit 352a483

Browse files
committed
Fix partition flag value
1 parent 83d222c commit 352a483

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

archinstall/lib/disk/device_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ def _setup_partition(
532532
)
533533

534534
for flag in part_mod.flags:
535-
partition.setFlag(flag.value)
535+
partition.setFlag(flag.flag_id)
536536

537537
debug(f'\tType: {part_mod.type.value}')
538538
debug(f'\tFilesystem: {part_mod.safe_fs_type.value}')

0 commit comments

Comments
 (0)