diff options
author | Dirk Baechle <dl9obn@darc.de> | 2015-03-28 21:34:58 (GMT) |
---|---|---|
committer | Dirk Baechle <dl9obn@darc.de> | 2015-03-28 21:34:58 (GMT) |
commit | 2dd443706e2c6a2f85e9ac40a237fc2c73aab345 (patch) | |
tree | b4f024daaee5d1c3398b6a9790441916ae55a3da | |
parent | aa0b7546c613ca2d3fff226815c94e3484b3f098 (diff) | |
download | SCons-switch_to_slots.zip SCons-switch_to_slots.tar.gz SCons-switch_to_slots.tar.bz2 |
- replaced wrong Node attribute with its new nameswitch_to_slots
-rw-r--r-- | src/engine/SCons/Node/FS.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/SCons/Node/FS.py b/src/engine/SCons/Node/FS.py index 4084d56..1a6f7e5 100644 --- a/src/engine/SCons/Node/FS.py +++ b/src/engine/SCons/Node/FS.py @@ -1816,7 +1816,7 @@ class Dir(Base): if p is None: # Don't use while: - else: for this condition because # if so, then parent is None and has no .path attribute. - raise SCons.Errors.StopError(parent.path) + raise SCons.Errors.StopError(parent._path) parent = p listDirs.reverse() for dirnode in listDirs: |