diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-10-07 18:36:28 +0200 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-10-07 18:38:03 +0200 |
commit | 7a2ae6b375410af1c34f65381b48ad5af21eb74d (patch) | |
tree | 56a370c957250c1d5e22931af52ba7b5c9699829 /main | |
parent | dcbf0725802ab70344fbbc2c54bca19a3dddfd01 (diff) | |
download | archweb-7a2ae6b375410af1c34f65381b48ad5af21eb74d.tar.gz archweb-7a2ae6b375410af1c34f65381b48ad5af21eb74d.tar.xz |
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.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/models.py b/main/models.py index 7fa0f4b..f68e501 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) |