diff options
author | Dirk Baechle <dl9obn@darc.de> | 2015-08-06 17:14:50 (GMT) |
---|---|---|
committer | Dirk Baechle <dl9obn@darc.de> | 2015-08-06 17:14:50 (GMT) |
commit | f1dbc3edd79cfbc80e469377bf8d45624cc04d40 (patch) | |
tree | 819103cc2938aec5231da4cd07eac71ea6d90c06 /test/explain/function-actions.py | |
parent | 1787f2cb6c75f45c6b0ac7a6c3c9c4b0ea95c5eb (diff) | |
parent | 2dd443706e2c6a2f85e9ac40a237fc2c73aab345 (diff) | |
download | SCons-f1dbc3edd79cfbc80e469377bf8d45624cc04d40.zip SCons-f1dbc3edd79cfbc80e469377bf8d45624cc04d40.tar.gz SCons-f1dbc3edd79cfbc80e469377bf8d45624cc04d40.tar.bz2 |
Merged in dirkbaechle/scons : switch of core classes to slots, memoizer subsystem now uses decorators
Diffstat (limited to 'test/explain/function-actions.py')
-rw-r--r-- | test/explain/function-actions.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/explain/function-actions.py b/test/explain/function-actions.py index e5f9ba8..bd3ad01 100644 --- a/test/explain/function-actions.py +++ b/test/explain/function-actions.py @@ -59,8 +59,8 @@ if mode: else: MyCopy = Builder(action = Copy('$TARGET', '$SOURCE')) def ChangingCopy(target, source, env): - tgt = str(target[0].abspath) - src = str(source[0].abspath) + tgt = str(target[0].get_abspath()) + src = str(source[0].get_abspath()) shutil.copy(src, tgt) ChangingCopy = Builder(action = ChangingCopy) |