Skip to content

Commit

Permalink
Update partition flags value (archlinux#3006)
Browse files Browse the repository at this point in the history
  • Loading branch information
codefiles authored and castillofrancodamian committed Dec 21, 2024
1 parent d561e41 commit 5f3d47c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion archinstall/lib/disk/device_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ def table_data(self) -> dict[str, str]:
'Start': self.start.format_size(Unit.sectors, self.sector_size, include_unit=False),
'End': end.format_size(Unit.sectors, self.sector_size, include_unit=False),
'Size': self.length.format_highest(),
'Flags': ', '.join([f.name for f in self.flags])
'Flags': ', '.join([f.description for f in self.flags])
}

if self.btrfs_subvol_infos:
Expand Down

0 comments on commit 5f3d47c

Please sign in to comment.