diff options
author | Matt Wilson <msw@redhat.com> | 2000-01-17 01:39:11 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-01-17 01:39:11 +0000 |
commit | 28e6f836b8dc16550486817b59f82d3f45177d2b (patch) | |
tree | a137a6f6a5979c8ef72e512b4b492f422c67eb80 /iw | |
parent | 3ad8ce199d792c7fa25009b224f8bfdbccca8d89 (diff) | |
download | anaconda-28e6f836b8dc16550486817b59f82d3f45177d2b.tar.gz anaconda-28e6f836b8dc16550486817b59f82d3f45177d2b.tar.xz anaconda-28e6f836b8dc16550486817b59f82d3f45177d2b.zip |
move this conditional code to todo
Diffstat (limited to 'iw')
-rw-r--r-- | iw/dependencies.py | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/iw/dependencies.py b/iw/dependencies.py index 0500ef2b0..62e2d119f 100644 --- a/iw/dependencies.py +++ b/iw/dependencies.py @@ -18,17 +18,7 @@ class UnresolvedDependenciesWindow (InstallWindow): def getScreen (self): threads_leave () - # XXX fixme -- this is broken - # oh, this makes me sick - if self.todo.upgrade: - import rpm - self.todo.fstab.mountFilesystems (self.todo.instPath) - db = rpm.opendb (0, self.todo.instPath) - self.deps = self.todo.verifyDeps (self.todo.instPath, db) - del db - self.todo.fstab.umountFilesystems (self.todo.instPath) - else: - self.deps = self.todo.verifyDeps () + self.deps = self.todo.verifyDeps () threads_enter () if not self.deps: return None |