diff options
author | Matt Wilson <msw@redhat.com> | 2001-02-14 02:42:51 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-02-14 02:42:51 +0000 |
commit | 0e75e0b555876b94ff8e6505d837d52b8ca49807 (patch) | |
tree | cc438828e5816ef0b55facca92392b65dbe5497a /todo.py | |
parent | 8282aa757e56fdcfaf122afe8859194fd26d665f (diff) | |
download | anaconda-0e75e0b555876b94ff8e6505d837d52b8ca49807.tar.gz anaconda-0e75e0b555876b94ff8e6505d837d52b8ca49807.tar.xz anaconda-0e75e0b555876b94ff8e6505d837d52b8ca49807.zip |
only record no dependency states in dep check
Diffstat (limited to 'todo.py')
-rw-r--r-- | todo.py | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -977,7 +977,8 @@ class ToDo: # do this again. if self.verifiedState == self.comps.getSelectionState()[1]: return - self.verifiedState = self.comps.getSelectionState()[1] + + self.verifiedState = None win = self.intf.waitWindow(_("Dependency Check"), _("Checking dependencies in packages selected for installation...")) @@ -1042,6 +1043,9 @@ class ToDo: win.pop() + if not rc: + self.verifiedState = self.comps.getSelectionState()[1] + return rc def selectDeps (self, deps): |