diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-11-06 21:32:22 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-11-06 21:32:22 +0000 |
commit | bfac7248bdd8aad61cc329c8399da392ae61f42c (patch) | |
tree | cf3d326f3035568cf21a684f1a1fbdbff5689e32 /iw/examine_gui.py | |
parent | 896faa49d6cd69e9508b1f4d8593b02abd8ba0cf (diff) | |
download | anaconda-bfac7248bdd8aad61cc329c8399da392ae61f42c.tar.gz anaconda-bfac7248bdd8aad61cc329c8399da392ae61f42c.tar.xz anaconda-bfac7248bdd8aad61cc329c8399da392ae61f42c.zip |
upgradeRoot is the first two parts of the tuple. I really really need to rewrite how we mount roots on upgrade
Diffstat (limited to 'iw/examine_gui.py')
-rw-r--r-- | iw/examine_gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/examine_gui.py b/iw/examine_gui.py index a2ddc90d4..9ea210db6 100644 --- a/iw/examine_gui.py +++ b/iw/examine_gui.py @@ -43,7 +43,7 @@ class UpgradeExamineWindow (InstallWindow): c.setSteps(self.dispatch) c.setInstallData(self.id) - self.id.upgradeRoot = [self.root] + self.id.upgradeRoot = [(self.root[0], self.root[1])] self.id.rootParts = self.parts if self.individualPackages.get_active(): self.dispatch.skipStep("indivpackage", skip = 0) |