Skip to content

Commit b3023b8

Browse files
committed
Make empty script name legal, since there's a fixture with one ;-)
- Legacy-Id: 755
1 parent 3647077 commit b3023b8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/redirects/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class Redirect(models.Model):
1515
searched for in the Command table to see if there
1616
is a different value of rest= and remove=.
1717
"""
18-
cgi = models.CharField(maxlength=50, unique=True)
18+
cgi = models.CharField(maxlength=50, unique=True, blank=True)
1919
url = models.CharField(maxlength=255)
2020
rest = models.CharField(maxlength=100, blank=True)
2121
remove = models.CharField(maxlength=50, blank=True)

0 commit comments

Comments
 (0)