summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirk Baechle <dl9obn@darc.de>2015-03-28 22:34:58 +0100
committerDirk Baechle <dl9obn@darc.de>2015-03-28 22:34:58 +0100
commit35f920d285181bfe43ab94d24dcc1416eb7e2499 (patch)
treeb4f024daaee5d1c3398b6a9790441916ae55a3da
parent60ce536d49ab6e537b4b09be8bea097b70ac361a (diff)
downloadscons-switch_to_slots.tar.gz
- replaced wrong Node attribute with its new nameswitch_to_slots
-rw-r--r--src/engine/SCons/Node/FS.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/SCons/Node/FS.py b/src/engine/SCons/Node/FS.py
index 4084d568..1a6f7e5c 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: