Commit 06f89325 authored by James Bennett's avatar James Bennett
Browse files

Ensure generated package name does not contain spaces; this will make Django...

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
parent 1d375e14
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/',
    author = 'Django Software Foundation',
    author_email = 'foundation@djangoproject.com',