Ensure generated package name does not contain spaces; this will make Django easy_installable from the Cheese Shop.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9452 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
James Bennett 2008-11-15 05:39:06 +00:00
parent 1d375e1472
commit 06f89325e1
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/',
author = 'Django Software Foundation',
author_email = 'foundation@djangoproject.com',