summaryrefslogtreecommitdiffstats
path: root/test/Scanner/dictionary.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/Scanner/dictionary.py')
-rw-r--r--test/Scanner/dictionary.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Scanner/dictionary.py b/test/Scanner/dictionary.py
index 62fda9b..b3baaa3 100644
--- a/test/Scanner/dictionary.py
+++ b/test/Scanner/dictionary.py
@@ -69,17 +69,17 @@ include2_re = re.compile(r'^include2\s+(\S+)$', re.M)
include3_re = re.compile(r'^include3\s+(\S+)$', re.M)
def kfile_scan1(node, env, scanpaths, arg=None):
- contents = node.get_contents()
+ contents = node.get_text_contents()
includes = include1_re.findall(contents)
return includes
def kfile_scan2(node, env, scanpaths, arg=None):
- contents = node.get_contents()
+ contents = node.get_text_contents()
includes = include2_re.findall(contents)
return includes
def kfile_scan3(node, env, scanpaths, arg=None):
- contents = node.get_contents()
+ contents = node.get_text_contents()
includes = include3_re.findall(contents)
return includes