summaryrefslogtreecommitdiffstats
path: root/todo.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-02-14 02:42:51 +0000
committerMatt Wilson <msw@redhat.com>2001-02-14 02:42:51 +0000
commit0e75e0b555876b94ff8e6505d837d52b8ca49807 (patch)
treecc438828e5816ef0b55facca92392b65dbe5497a /todo.py
parent8282aa757e56fdcfaf122afe8859194fd26d665f (diff)
downloadanaconda-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.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/todo.py b/todo.py
index 35f802a5e..00aca6017 100644
--- a/todo.py
+++ b/todo.py
@@ -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):