diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-11-27 22:55:39 +0000 |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-11-27 22:55:39 +0000 |
commit | b68947ef97d4a955bdf6702014898aa7d4fa0025 (patch) | |
tree | 609bc520756220cb1d207ed1e6eb3e7e1ac2dd99 | |
parent | a775dd176c9ddcb1bc542e02c8e94fdbbc190d38 (diff) | |
download | cpython-git-b68947ef97d4a955bdf6702014898aa7d4fa0025.tar.gz |
2.4a0 Package Manager shouldn't attempt to use the 2.3 database.
Things will definitely change before 2.4, but for now use a slightly
different URL.
-rw-r--r-- | Lib/plat-mac/pimp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/plat-mac/pimp.py b/Lib/plat-mac/pimp.py index 1b0ff21d75..375e99d489 100644 --- a/Lib/plat-mac/pimp.py +++ b/Lib/plat-mac/pimp.py @@ -44,7 +44,7 @@ DEFAULT_FLAVORORDER=['source', 'binary'] DEFAULT_DOWNLOADDIR='/tmp' DEFAULT_BUILDDIR='/tmp' DEFAULT_INSTALLDIR=distutils.sysconfig.get_python_lib() -DEFAULT_PIMPDATABASE="http://www.python.org/packman/version-0.3/%s.plist" % distutils.util.get_platform() +DEFAULT_PIMPDATABASE="http://www.python.org/packman/version-0.3/24a0-%s.plist" % distutils.util.get_platform() def _cmd(output, dir, *cmditems): """Internal routine to run a shell command in a given directory.""" |