diff options
Diffstat (limited to 'test/BuildDir.py')
| -rw-r--r-- | test/BuildDir.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/BuildDir.py b/test/BuildDir.py index 63b357e..a71d4dd 100644 --- a/test/BuildDir.py +++ b/test/BuildDir.py @@ -68,8 +68,8 @@ import os.path def buildIt(target, source, env): if not os.path.exists('build'): os.mkdir('build') - f1=open(source[0], 'r') - f2=open(target, 'w') + f1=open(str(source[0]), 'r') + f2=open(str(target[0]), 'w') f2.write(f1.read()) f2.close() f1.close() |
