Skip to content

Commit

Permalink
Merge pull request #1660 from M4rtinK/master-remove_experimental_labe…
Browse files Browse the repository at this point in the history
…l_from_mountpoint_assignment

Remove EXPERIMENTAL label for mountpoint assignment in TUI (#1636940)
  • Loading branch information
M4rtinK committed Oct 17, 2018
2 parents be6d412 + 876d7d8 commit 309c7e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyanaconda/ui/tui/spokes/storage.py
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 309c7e5

Please sign in to comment.