diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-10-07 09:36:28 -0700 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-10-07 09:38:03 -0700 |
commit | 7a2ae6b375410af1c34f65381b48ad5af21eb74d (patch) | |
tree | 56a370c957250c1d5e22931af52ba7b5c9699829 | |
parent | dcbf0725802ab70344fbbc2c54bca19a3dddfd01 (diff) |
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>
-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 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) |