We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c09c33b commit 7cbc3f6Copy full SHA for 7cbc3f6
gfwlist.py
@@ -51,7 +51,7 @@ def parse_gfwlist(text):
51
blackpat = [] # blacklisted patterns
52
whitepat = [] # whitelisted patterns
53
54
- for line in text.splitlines():
+ for line in text.splitlines()[1:]:
55
if not line.strip() or line.startswith("!"):
56
continue # ignore comments and empty lines
57
0 commit comments