diff options
author | Steven Knight <knight@baldmt.com> | 2003-05-06 05:58:31 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-05-06 05:58:31 (GMT) |
commit | aaf2cbb74e00fdc89da432d18e9fe40bb7de3b9d (patch) | |
tree | c399116a6a33ae9ad69d04dd43c2f272737c2074 /test/CacheDir.py | |
parent | e591784eb29edfaf2760024f57ee1462f1bae1f3 (diff) | |
download | SCons-aaf2cbb74e00fdc89da432d18e9fe40bb7de3b9d.zip SCons-aaf2cbb74e00fdc89da432d18e9fe40bb7de3b9d.tar.gz SCons-aaf2cbb74e00fdc89da432d18e9fe40bb7de3b9d.tar.bz2 |
Refactor to use real Nodes for command-line attributes and eliminate PathList. (Charles Crain)
Diffstat (limited to 'test/CacheDir.py')
-rw-r--r-- | test/CacheDir.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CacheDir.py b/test/CacheDir.py index 24c7e60..de78e7a 100644 --- a/test/CacheDir.py +++ b/test/CacheDir.py @@ -239,7 +239,7 @@ CacheDir(r'%s') def docopy(target,source,env): data = source[0].get_contents() - f = open(target[0].rfile().abspath, "wb") + f = open(target[0].rfile().get_abspath(), "wb") f.write(data) f.close() |