Commit c4c04429 authored by Michal Čihař's avatar Michal Čihař

Strip _ as well (possible marker for key)

parent 6d5e103c
...@@ -218,7 +218,7 @@ class SameCheck(Check): ...@@ -218,7 +218,7 @@ class SameCheck(Check):
return False return False
# Ignore words which are often same in foreigh language # Ignore words which are often same in foreigh language
if source.lower().strip('&: ') in SAME_BLACKLIST: if source.lower().strip('_&: ') in SAME_BLACKLIST:
return False return False
return (source == target) return (source == target)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment