Remove verify_exists=False from URLField, it is now obsolete

- Legacy-Id: 6875
This commit is contained in:
Ole Laursen 2013-12-11 15:31:18 +00:00
parent f5b2cfbc42
commit b92a49b216

View file

@ -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)