Added comment passing on extracting matching sites

This commit is contained in:
bytedream 2022-02-01 21:55:55 +01:00
parent 4c1bfbde62
commit 0f8d323c3c

View File

@ -24,6 +24,7 @@ def load_matches():
else:
match = pattern.findall(line)
if match:
if not line.strip().startswith('//'):
matched.append(match[0])
else:
break