From 0f8d323c3c7dc2e6ccc7b2bb245b73b14345cc5d Mon Sep 17 00:00:00 2001 From: bytedream Date: Tue, 1 Feb 2022 21:55:55 +0100 Subject: [PATCH] Added comment passing on extracting matching sites --- build.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.py b/build.py index 93e6d18..09e982f 100644 --- a/build.py +++ b/build.py @@ -24,7 +24,8 @@ def load_matches(): else: match = pattern.findall(line) if match: - matched.append(match[0]) + if not line.strip().startswith('//'): + matched.append(match[0]) else: break