diff options
author | Gary Oberbrunner <garyo@oberbrunner.com> | 2012-02-04 18:46:13 (GMT) |
---|---|---|
committer | Gary Oberbrunner <garyo@oberbrunner.com> | 2012-02-04 18:46:13 (GMT) |
commit | 466f863cb8623cd4cae6b0f6199c78a6350e67cd (patch) | |
tree | 549d448328ce5c95c1ca489dacf6f17a5de3c38f /bin | |
parent | 02a7487a168fc889b49909b06c69e70cc5f6a664 (diff) | |
parent | f41b631016ef9630dfd3338fdccc9c0d0e969583 (diff) | |
download | SCons-466f863cb8623cd4cae6b0f6199c78a6350e67cd.zip SCons-466f863cb8623cd4cae6b0f6199c78a6350e67cd.tar.gz SCons-466f863cb8623cd4cae6b0f6199c78a6350e67cd.tar.bz2 |
Merged issue2812 branch from Dirk Baechle
Diffstat (limited to 'bin')
-rw-r--r-- | bin/scons-doc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/scons-doc.py b/bin/scons-doc.py index f99dfa7..cf5d5b2 100644 --- a/bin/scons-doc.py +++ b/bin/scons-doc.py @@ -845,7 +845,7 @@ def process(filename, fout=sys.stdout): if data.startswith('<?xml '): first_line, data = data.split('\n', 1) - sys.stdout.write(first_line + '\n') + fout.write(first_line + '\n') x = MySGML(fout) for c in data: |