diff options
author | Steven Knight <knight@baldmt.com> | 2008-12-12 06:16:31 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2008-12-12 06:16:31 (GMT) |
commit | 6554d8631debd788d6bad226d098daee080ca20e (patch) | |
tree | f468f63915d4ba1b0ea3cc2d064d5ce922cfe6e4 /test/explain | |
parent | 8e1e691178fb24207d0e073a8c67bd8810211396 (diff) | |
download | SCons-6554d8631debd788d6bad226d098daee080ca20e.zip SCons-6554d8631debd788d6bad226d098daee080ca20e.tar.gz SCons-6554d8631debd788d6bad226d098daee080ca20e.tar.bz2 |
Issue 2255: Handle scanning of UTF-8 and UTF-16 files. (Greg Spencer)
Diffstat (limited to 'test/explain')
-rw-r--r-- | test/explain/basic.py | 2 | ||||
-rw-r--r-- | test/explain/save-info.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/explain/basic.py b/test/explain/basic.py index e1198d5..b30e604 100644 --- a/test/explain/basic.py +++ b/test/explain/basic.py @@ -83,7 +83,7 @@ import re include_re = re.compile(r'^include\s+(\S+)$', re.M) def kfile_scan(node, env, target, arg): - contents = node.get_contents() + contents = node.get_text_contents() includes = include_re.findall(contents) return includes diff --git a/test/explain/save-info.py b/test/explain/save-info.py index 0d8f5c7..b72b3fb 100644 --- a/test/explain/save-info.py +++ b/test/explain/save-info.py @@ -75,7 +75,7 @@ import re include_re = re.compile(r'^include\s+(\S+)$', re.M) def kfile_scan(node, env, target, arg): - contents = node.get_contents() + contents = node.get_text_contents() includes = include_re.findall(contents) return includes |