summaryrefslogtreecommitdiffstats
path: root/test/srcchange.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2008-12-12 06:16:31 (GMT)
committerSteven Knight <knight@baldmt.com>2008-12-12 06:16:31 (GMT)
commit6554d8631debd788d6bad226d098daee080ca20e (patch)
treef468f63915d4ba1b0ea3cc2d064d5ce922cfe6e4 /test/srcchange.py
parent8e1e691178fb24207d0e073a8c67bd8810211396 (diff)
downloadSCons-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/srcchange.py')
-rw-r--r--test/srcchange.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/srcchange.py b/test/srcchange.py
index 0b56442..6cda3dd 100644
--- a/test/srcchange.py
+++ b/test/srcchange.py
@@ -53,10 +53,10 @@ import re
import string
def subrevision(target, source ,env):
- orig = target[0].get_contents()
+ orig = target[0].get_text_contents()
new = re.sub('\$REV.*?\$',
- '$REV: %%s$'%%string.strip(source[0].get_contents()),
- target[0].get_contents())
+ '$REV: %%s$'%%string.strip(source[0].get_text_contents()),
+ target[0].get_text_contents())
outf = open(str(target[0]),'wb')
outf.write(new)
outf.close()