Skip to content

Commit bfd923f

Browse files
committed
minor update
1 parent 25f3143 commit bfd923f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tamper/versionedkeywords.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def tamper(payload):
2323

2424
def process(match):
2525
word = match.group('word')
26-
if word.upper() in kb.keywords and word.upper() not in ["CAST"]: # CAST can't be commented out
26+
if word.upper() in kb.keywords and word.upper() not in ["CAST", "COUNT"]: # keywords that can't be commented out
2727
return match.group().replace(word, "/*!%s*/" % word)
2828
else:
2929
return match.group()

0 commit comments

Comments
 (0)