Commit a4782f05 authored by James Bennett's avatar James Bennett
Browse files

[1.0.X] Ensure generated package name does not contain spaces; this will make...

[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
parent a703cc99
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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',