]> granicus.if.org Git - python/commitdiff
Force option should be applied to a single package, not recursively
authorJack Jansen <jack.jansen@cwi.nl>
Sat, 13 Mar 2004 23:03:38 +0000 (23:03 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Sat, 13 Mar 2004 23:03:38 +0000 (23:03 +0000)
to its dependencies. Fixes #733819.

Lib/plat-mac/pimp.py

index bff5f6c5157c004d1bf9ad16c7f446ca29900cb5..9188612f7c20c5b9c1e1613ba1c937a595cd845c 100644 (file)
@@ -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)