summaryrefslogtreecommitdiff
path: root/doc/SConscript
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2008-12-12 06:16:31 +0000
committerSteven Knight <knight@baldmt.com>2008-12-12 06:16:31 +0000
commitbd7015b46c7cf6ffb0522ce7d20a6d8559b75155 (patch)
treef468f63915d4ba1b0ea3cc2d064d5ce922cfe6e4 /doc/SConscript
parentad39c4a4612cd5f3f920c0cc44ffb2b2d4160a8a (diff)
downloadscons-bd7015b46c7cf6ffb0522ce7d20a6d8559b75155.tar.gz
Issue 2255: Handle scanning of UTF-8 and UTF-16 files. (Greg Spencer)
Diffstat (limited to 'doc/SConscript')
-rw-r--r--doc/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/SConscript b/doc/SConscript
index e010ebf9..e4668fcd 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))