diff options
author | Jeremy Katz <katzj@redhat.com> | 2006-02-13 21:45:55 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2006-02-13 21:45:55 +0000 |
commit | 62796b192f432cec8cd6dad63e9266cf034d3a10 (patch) | |
tree | d4816f4a1607091b5ba4f9dc5ea138527850322a /yuminstall.py | |
parent | ceb5a5454fd71ee61269686f534188d7e5eb087c (diff) | |
download | anaconda-62796b192f432cec8cd6dad63e9266cf034d3a10.tar.gz anaconda-62796b192f432cec8cd6dad63e9266cf034d3a10.tar.xz anaconda-62796b192f432cec8cd6dad63e9266cf034d3a10.zip |
2006-02-13 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version.
* yuminstall.py (YumBackend.doPostSelection): Only import upgrade
as needed, so that we don't need the full chain of deps for pkgorder
Diffstat (limited to 'yuminstall.py')
-rw-r--r-- | yuminstall.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yuminstall.py b/yuminstall.py index ae0f5bc4f..eaa638c5c 100644 --- a/yuminstall.py +++ b/yuminstall.py @@ -31,7 +31,6 @@ from sortedtransaction import SplitMediaTransactionData from genheader import * from constants import * from rhpl.translate import _ -from upgrade import upgrade_remove_blacklist import logging log = logging.getLogger("anaconda") @@ -747,6 +746,7 @@ class YumBackend(AnacondaBackend): self.selectConditionalPackages() if id.getUpgrade(): + from upgrade import upgrade_remove_blacklist for pkg in upgrade_remove_blacklist: pkgarch = None pkgnames = None |