Skip to content

Commit

Permalink
Remove EXPERIMENTAL label for mountpoint assignment in TUI (#1636940)
Browse files Browse the repository at this point in the history
The mountpoint assignment support in TUI is no longer considered
experimental, so drop the EXPERIMENTAL label.

Resolves: rhbz#1636940
  • Loading branch information
M4rtinK committed Oct 16, 2018
1 parent be6d412 commit 876d7d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyanaconda/ui/tui/spokes/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ def refresh(self, args=None):
c = CheckboxWidget(title=_(part_type),
completed=(not self._do_mount_assign and PARTTYPES[part_type] == self.clearPartType))
self._container.add(c, self._select_partition_type_callback, part_type)
c = CheckboxWidget(title=_("Manually assign mount points") + _(" (EXPERIMENTAL)"),
c = CheckboxWidget(title=_("Manually assign mount points"),
completed=self._do_mount_assign)
self._container.add(c, self._select_mount_assign)

Expand Down

0 comments on commit 876d7d8

Please sign in to comment.