diff --git a/py/__init__.py b/py/__init__.py index 079608819..e3ec40df3 100644 --- a/py/__init__.py +++ b/py/__init__.py @@ -9,11 +9,11 @@ version = "0.9.0-beta" initpkg(__name__, description = "py lib: agile development and test support library", - revision = int('$LastChangedRevision: 38595 $'.split(':')[1][:-1]), - lastchangedate = '$LastChangedDate: 2007-02-12 17:42:53 +0100 (Mon, 12 Feb 2007) $', + revision = int('$LastChangedRevision: 38598 $'.split(':')[1][:-1]), + lastchangedate = '$LastChangedDate: 2007-02-12 17:57:45 +0100 (Mon, 12 Feb 2007) $', version = version, url = "http://codespeak.net/py", - download_url = "http://codespeak.net/download/py/%s.tar.gz" %(version,), + download_url = "http://codespeak.net/download/py/py-%s.tar.gz" %(version,), license = "MIT license", platforms = ['unix', 'linux', 'cygwin'], author = "holger krekel, Carl Friedrich Bolz, Guido Wesdorp, Maciej Fijalkowski, Armin Rigo & others", diff --git a/py/bin/_makepyrelease.py b/py/bin/_makepyrelease.py index 0049b01a6..336a3f85a 100755 --- a/py/bin/_makepyrelease.py +++ b/py/bin/_makepyrelease.py @@ -51,7 +51,7 @@ def make_distfiles(tmpdir): distdir = tmpdir.ensure('dist', dir=1) oldir = rootdir.chdir() try: - from py.__.misc.dist import setup + from py.__.misc._dist import setup trace("invoking sdist, generating into %s" % (distdir,)) setup(py, script_name="setup.py", script_args=('-q', 'sdist', '--no-prune', @@ -81,7 +81,7 @@ def unpackremotetar(tmpdir, strurl): f = urllib.urlopen(strurl) basename = strurl.split('/')[-1] target = tmpdir.join(basename) - trace("downloading to %s" %(target,)) + trace("downloading %r to %s" %(strurl, target,)) target.write(f.read()) trace("extracting to %s" %(target,))