diff options
Diffstat (limited to 'test/srcchange.py')
-rw-r--r-- | test/srcchange.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/srcchange.py b/test/srcchange.py index 27921a9..d181297 100644 --- a/test/srcchange.py +++ b/test/srcchange.py @@ -44,18 +44,16 @@ test = TestSCons.TestSCons() test.write('getrevision', """ #!/usr/bin/env python -import string -print string.strip(open('revnum.in','rb').read()) +print open('revnum.in','rb').read().strip() """) test.write('SConstruct', """ import re -import string def subrevision(target, source ,env): orig = target[0].get_text_contents() new = re.sub('\$REV.*?\$', - '$REV: %%s$'%%string.strip(source[0].get_text_contents()), + '$REV: %%s$'%%source[0].get_text_contents().strip(), target[0].get_text_contents()) outf = open(str(target[0]),'wb') outf.write(new) |