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 /doc/SConscript | |
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 'doc/SConscript')
-rw-r--r-- | doc/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/SConscript b/doc/SConscript index e010ebf..e4668fc 100644 --- a/doc/SConscript +++ b/doc/SConscript @@ -76,7 +76,7 @@ format_re = re.compile(r'<(?:graphic|imagedata)\s+fileref="([^"]*)"(?:\s+format= def scanxml(node, env, target): includes = [] - contents = node.get_contents() + contents = node.get_text_contents() includes.extend(entity_re.findall(contents)) |