summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Noel <GregNoel@tigris.org>2009-04-22 20:17:22 (GMT)
committerGreg Noel <GregNoel@tigris.org>2009-04-22 20:17:22 (GMT)
commit565fa2e2e6ccf707cd9ccf20c3504af771548f63 (patch)
tree66f7558b7fc60abfa7cce88cad2ef6e650f75ada
parent222ddc9ae4b8123f451d976a4d8d8b1d57e9ffd0 (diff)
downloadSCons-565fa2e2e6ccf707cd9ccf20c3504af771548f63.zip
SCons-565fa2e2e6ccf707cd9ccf20c3504af771548f63.tar.gz
SCons-565fa2e2e6ccf707cd9ccf20c3504af771548f63.tar.bz2
use correct base class for filesystem factory functions
-rw-r--r--src/engine/SCons/Environment.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/SCons/Environment.py b/src/engine/SCons/Environment.py
index a10c203..37dd3b4 100644
--- a/src/engine/SCons/Environment.py
+++ b/src/engine/SCons/Environment.py
@@ -1034,7 +1034,7 @@ class Base(SubstitutionEnvironment):
"""
name = default
try:
- is_node = issubclass(factory, SCons.Node.Node)
+ is_node = issubclass(factory, SCons.Node.FS.Base)
except TypeError:
# The specified factory isn't a Node itself--it's
# most likely None, or possibly a callable.