From 8a65192562d679bc48d2fbe0798bf08175f023f5 Mon Sep 17 00:00:00 2001 From: James Bennett Date: Fri, 9 Oct 2009 22:07:49 +0000 Subject: [PATCH] [1.1.X] Really fix the download_url. We already manually tweaked it on pypi, so this is just my inner perfectionist complaining. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11611 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2ff1e844fd..c468657d95 100644 --- a/setup.py +++ b/setup.py @@ -74,7 +74,7 @@ setup( name = "Django", version = version.replace(' ', '-'), url = 'http://www.djangoproject.com/', - download_url = 'http://media.djangoproject.com/releases/1.1/Django-1.1.1.tar.gz', + download_url = 'http://media.djangoproject.com/releases/1.1.1/Django-1.1.1.tar.gz', author = 'Django Software Foundation', author_email = 'foundation@djangoproject.com', description = 'A high-level Python Web framework that encourages rapid development and clean, pragmatic design.',