Compile URL matching regex before using it in the loop.

Signed-off-by: Mateusz Starzyk <mateusz.starzyk@mobica.com>
This commit is contained in:
Mateusz Starzyk 2021-03-24 12:51:15 +01:00
parent 6e47055a0b
commit 9ee8166148

View file

@ -219,8 +219,9 @@ class ChangeLog:
category.name.decode('utf8'))
body_split = category.body.splitlines()
re_has_url = re.compile('.*http[s]?://.*')
for line_number, line in enumerate(body_split, 1):
if not re.match('.*http[s]?://.*', line.decode('utf-8')) and \
if not re_has_url.match(line.decode('utf-8')) and \
len(line) > MAX_LINE_LENGTH:
raise InputFormatError(filename,
category.body_line + line_number,