mirror of
https://github.com/django/django.git
synced 2025-07-19 09:09:13 +00:00
[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:
parent
a703cc9970
commit
a4782f0581
2
setup.py
2
setup.py
@ -72,7 +72,7 @@ if u'SVN' in version:
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = "Django",
|
name = "Django",
|
||||||
version = version,
|
version = version.replace(' ', '-'),
|
||||||
url = 'http://www.djangoproject.com/',
|
url = 'http://www.djangoproject.com/',
|
||||||
download_url='http://www.djangoproject.com/download/1.0.1-beta-1/tarball/',
|
download_url='http://www.djangoproject.com/download/1.0.1-beta-1/tarball/',
|
||||||
author = 'Django Software Foundation',
|
author = 'Django Software Foundation',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user