diff options
author | Matt Wilson <msw@redhat.com> | 2001-07-24 20:26:40 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-07-24 20:26:40 +0000 |
commit | 4cbf0233924a9f92563a90a8da0df7e06a591192 (patch) | |
tree | d484006f63806347b96e4be4014188401c4b1122 /packages.py | |
parent | 803a8edbb80b718c5f33fc529f77e2102af0808e (diff) | |
download | anaconda-4cbf0233924a9f92563a90a8da0df7e06a591192.tar.gz anaconda-4cbf0233924a9f92563a90a8da0df7e06a591192.tar.xz anaconda-4cbf0233924a9f92563a90a8da0df7e06a591192.zip |
reduce the level of insanity by 10X, remove this "apply(apply(" mess
Diffstat (limited to 'packages.py')
-rw-r--r-- | packages.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/packages.py b/packages.py index c2fcfbebd..2dd518220 100644 --- a/packages.py +++ b/packages.py @@ -623,10 +623,8 @@ def doPostInstall(method, id, intf, instPath): if flags.test: return - createWindow = (intf.progressWindow, - (_("Post Install"), - _("Performing post install configuration..."), 8)) - w = apply(apply, createWindow) + w = intf.progressWindow(_("Post Install"), + _("Performing post install configuration..."), 8) upgrade = id.upgrade.get() arch = iutil.getArch () |