From 06f89325e152f1d7084f6d200d6879ffa940fd44 Mon Sep 17 00:00:00 2001 From: James Bennett Date: Sat, 15 Nov 2008 05:39:06 +0000 Subject: [PATCH] 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 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2f65cfa64e..f6e6528694 100644 --- a/setup.py +++ b/setup.py @@ -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',