summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJames Bennett <ubernostrum@gmail.com>2008-11-15 05:39:06 +0000
committerJames Bennett <ubernostrum@gmail.com>2008-11-15 05:39:06 +0000
commit06f89325e152f1d7084f6d200d6879ffa940fd44 (patch)
tree942879cff8a8a51f89a2935cdf11a71612d91d87 /setup.py
parent1d375e14723dc1f33e4d057ab812b03f2bd9bf02 (diff)
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
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
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',