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

Reenable caching for XML checks

parent 8a1aa072
......@@ -740,10 +740,10 @@ class XMLTagsCheck(TargetCheck):
def check_single(self, source, target, flags, language, unit):
# Try getting source string data from cache
source_tags = None #self.get_cache(unit)
source_tags = self.get_cache(unit)
# Source is not XML
if source_tags == False:
if source_tags is False:
return False
# Do we need to process source (cache miss)
......
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