diff options
| author | James Bennett <ubernostrum@gmail.com> | 2008-11-15 05:39:06 +0000 |
|---|---|---|
| committer | James Bennett <ubernostrum@gmail.com> | 2008-11-15 05:39:06 +0000 |
| commit | 06f89325e152f1d7084f6d200d6879ffa940fd44 (patch) | |
| tree | 942879cff8a8a51f89a2935cdf11a71612d91d87 /setup.py | |
| parent | 1d375e14723dc1f33e4d057ab812b03f2bd9bf02 (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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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', |
