From 7a2ae6b375410af1c34f65381b48ad5af21eb74d Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Wed, 7 Oct 2009 09:36:28 -0700 Subject: Set verify_exists=False on ExternalProjects model This causes issues when entering some URLs. See http://code.djangoproject.com/ticket/9918 Signed-off-by: Aaron Griffin --- main/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main') diff --git a/main/models.py b/main/models.py index 7fa0f4bf..f68e501e 100644 --- a/main/models.py +++ b/main/models.py @@ -308,7 +308,7 @@ class Meta: unique_together = (('list','pkg'),) class ExternalProject(models.Model): - url = models.URLField() + url = models.URLField(verify_exists=False) name = models.CharField(max_length=64) description = models.CharField(max_length=128) -- cgit v1.2.3-54-g00ecf