Skip to content

Commit b92a49b

Browse files
committed
Remove verify_exists=False from URLField, it is now obsolete
- Legacy-Id: 6875
1 parent f5b2cfb commit b92a49b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/group/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ class Meta:
114114
class GroupURL(models.Model):
115115
group = models.ForeignKey(Group)
116116
name = models.CharField(max_length=255)
117-
url = models.URLField(verify_exists=False)
117+
url = models.URLField()
118118

119119
def __unicode__(self):
120120
return u"%s (%s)" % (self.url, self.name)

0 commit comments

Comments
 (0)