From: Jack Jansen Date: Sat, 13 Mar 2004 23:03:38 +0000 (+0000) Subject: Force option should be applied to a single package, not recursively X-Git-Tag: v2.4a1~707 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0576d0a48a5111fef529732830db2e60102406f7;p=python Force option should be applied to a single package, not recursively to its dependencies. Fixes #733819. --- diff --git a/Lib/plat-mac/pimp.py b/Lib/plat-mac/pimp.py index bff5f6c515..9188612f7c 100644 --- a/Lib/plat-mac/pimp.py +++ b/Lib/plat-mac/pimp.py @@ -921,7 +921,7 @@ class PimpInstaller: prereqs = package.prerequisites() for pkg, descr in prereqs: if pkg: - self._prepareInstall(pkg, force, recursive) + self._prepareInstall(pkg, False, recursive) else: self._curmessages.append("Problem with dependency: %s" % descr)