Allow document Additional URLs to become empty. Fixes #2864. Commit ready for merge.

- Legacy-Id: 17227
This commit is contained in:
Robert Sparks 2020-01-13 19:03:58 +00:00
parent af0a9954fe
commit 0c0cc5dcf5

View file

@ -1,4 +1,4 @@
# Copyright The IETF Trust 2010-2019, All Rights Reserved
# Copyright The IETF Trust 2010-2020, All Rights Reserved
# -*- coding: utf-8 -*-
@ -1188,8 +1188,8 @@ def edit_document_urls(request, name):
def clean_urls(self):
lines = [x.strip() for x in self.cleaned_data["urls"].splitlines() if x.strip()]
url_validator = URLValidator()
errors = []
for l in lines:
errors = []
parts = l.split()
if len(parts) == 1:
errors.append("Too few fields: Expected at least url and tag: '%s'" % l)