diff options
Diffstat (limited to 'test/Value.py')
-rw-r--r-- | test/Value.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/Value.py b/test/Value.py index 9f0645e..72a43fa 100644 --- a/test/Value.py +++ b/test/Value.py @@ -73,9 +73,8 @@ env.B3('f5.out', V) test.write('put.py', """\ import os -import string import sys -open(sys.argv[-1],'wb').write(string.join(sys.argv[1:-2])) +open(sys.argv[-1],'wb').write(" ".join(sys.argv[1:-2])) """) # Run all of the tests with both types of source signature |