diff options
author | Chris Lumens <clumens@redhat.com> | 2009-05-01 12:54:51 -0400 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2009-05-01 13:43:31 -0400 |
commit | 3ef81a3bf065f016ab0eda276b3130e83aafecc3 (patch) | |
tree | 694f12f1a73348f8bdb23d82faa1256b8e1e3fd4 | |
parent | f2a17f51c770a43f1d046c3a0352d16867b3aaef (diff) | |
download | anaconda-3ef81a3bf065f016ab0eda276b3130e83aafecc3.tar.gz anaconda-3ef81a3bf065f016ab0eda276b3130e83aafecc3.tar.xz anaconda-3ef81a3bf065f016ab0eda276b3130e83aafecc3.zip |
Allow editing of the hdiso source partition so it can be mounted (#498591).
-rw-r--r-- | iw/partition_gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/partition_gui.py b/iw/partition_gui.py index 8a283cf04..39db656a5 100644 --- a/iw/partition_gui.py +++ b/iw/partition_gui.py @@ -1050,7 +1050,7 @@ class PartitionWindow(InstallWindow): custom_icon="error") return - reason = self.storage.deviceImmutable(device) + reason = self.storage.deviceImmutable(device, ignoreProtected=True) if reason: self.intf.messageWindow(_("Unable To Edit"), _("You cannot edit this device:\n\n%s") |