[1.0.X] Ensure generated package name does not contain spaces; this will make Django easy_installable from the Cheese Shop. This is [9452] on trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9453 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
James Bennett 2008-11-15 05:39:58 +00:00
parent a703cc9970
commit a4782f0581
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ if u'SVN' in version:
setup(
name = "Django",
version = version,
version = version.replace(' ', '-'),
url = 'http://www.djangoproject.com/',
download_url='http://www.djangoproject.com/download/1.0.1-beta-1/tarball/',
author = 'Django Software Foundation',