summaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorAaron Griffin <aaronmgriffin@gmail.com>2009-10-07 09:36:28 -0700
committerAaron Griffin <aaronmgriffin@gmail.com>2009-10-07 09:38:03 -0700
commit7a2ae6b375410af1c34f65381b48ad5af21eb74d (patch)
tree56a370c957250c1d5e22931af52ba7b5c9699829 /main
parentdcbf0725802ab70344fbbc2c54bca19a3dddfd01 (diff)
downloadarchweb-7a2ae6b375410af1c34f65381b48ad5af21eb74d.tar.gz
archweb-7a2ae6b375410af1c34f65381b48ad5af21eb74d.zip
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 <aaronmgriffin@gmail.com>
Diffstat (limited to 'main')
-rw-r--r--main/models.py2
1 files changed, 1 insertions, 1 deletions
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 TodolistPkg(models.Model):
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)