Remove verify_exists=False from URLField, it is now obsolete
- Legacy-Id: 6875
This commit is contained in:
parent
f5b2cfbc42
commit
b92a49b216
|
@ -114,7 +114,7 @@ class GroupHistory(GroupInfo):
|
|||
class GroupURL(models.Model):
|
||||
group = models.ForeignKey(Group)
|
||||
name = models.CharField(max_length=255)
|
||||
url = models.URLField(verify_exists=False)
|
||||
url = models.URLField()
|
||||
|
||||
def __unicode__(self):
|
||||
return u"%s (%s)" % (self.url, self.name)
|
||||
|
|
Loading…
Reference in a new issue