diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-14 18:00:58 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-14 18:00:58 +0000 |
commit | 89ec8551526b7bdbaac9ffe0d7ae7dd0e705ce3b (patch) | |
tree | 318ac54ad1a8e4d3063fc7c7ce3abc0398ac6a4f | |
parent | 0055670a337a441b945120891861218ee7c33aab (diff) | |
download | anaconda-89ec8551526b7bdbaac9ffe0d7ae7dd0e705ce3b.tar.gz anaconda-89ec8551526b7bdbaac9ffe0d7ae7dd0e705ce3b.tar.xz anaconda-89ec8551526b7bdbaac9ffe0d7ae7dd0e705ce3b.zip |
fixed
-rw-r--r-- | iw/examine.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/iw/examine.py b/iw/examine.py index f8c2ed86f..87aed4138 100644 --- a/iw/examine.py +++ b/iw/examine.py @@ -7,7 +7,6 @@ class UpgradeExamineWindow (InstallWindow): def __init__ (self, ics): InstallWindow.__init__ (self, ics) - ics.setTitle (_("Upgrade Examine")) def toggled (self, widget, part): @@ -16,7 +15,7 @@ class UpgradeExamineWindow (InstallWindow): def getNext (self): threads_leave () - todo.makeFilesystems (createFs = 0) + self.todo.makeFilesystems (createFs = 0) self.todo.upgradeFindPackages (self.root) threads_enter () |