summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
Diffstat (limited to 'iw')
-rw-r--r--iw/examine_gui.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/iw/examine_gui.py b/iw/examine_gui.py
index 334f3d1e4..3a62e06c5 100644
--- a/iw/examine_gui.py
+++ b/iw/examine_gui.py
@@ -90,6 +90,12 @@ class UpgradeExamineWindow (InstallWindow):
else:
self.doupgrade = self.anaconda.id.upgrade
+ # we might get here after storage reset that obsoleted
+ # root device objects we had found
+ if not self.anaconda.id.rootParts:
+ self.anaconda.id.rootParts = upgrade.findExistingRoots(self.anaconda)
+ upgrade.setUpgradeRoot(self.anaconda)
+
self.parts = self.anaconda.id.rootParts
vbox = gtk.VBox (False, 10)