diff options
author | pnfisher <pnfisher> | 1999-08-23 20:44:24 +0000 |
---|---|---|
committer | pnfisher <pnfisher> | 1999-08-23 20:44:24 +0000 |
commit | 8a99b0ea14be91948789340100a2c86512f59041 (patch) | |
tree | 3f21388b8e2e5303dd7af3e1122b2ba2eb49b75c | |
parent | 8600fce9b7ffa1ed3e383e3f1655bd5bdea02919 (diff) | |
download | anaconda-8a99b0ea14be91948789340100a2c86512f59041.tar.gz anaconda-8a99b0ea14be91948789340100a2c86512f59041.tar.xz anaconda-8a99b0ea14be91948789340100a2c86512f59041.zip |
(toggled): Change todo to self.todo.
-rw-r--r-- | iw/installpath.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/iw/installpath.py b/iw/installpath.py index be3b94e4a..73f2ed035 100644 --- a/iw/installpath.py +++ b/iw/installpath.py @@ -44,10 +44,10 @@ class InstallPathWindow (InstallWindow): if not widget.get_active (): return if type == INSTALL: self.ics.getICW ().setStateList (self.commonSteps + self.installSteps, len (self.commonSteps)-1) - todo.upgrade = 0 + self.todo.upgrade = 0 else: self.ics.getICW ().setStateList (self.commonSteps + self.upgradeSteps, len (self.commonSteps)-1) - todo.upgrade = 1 + self.todo.upgrade = 1 def getScreen (self): box = GtkVBox (FALSE, 5) |