summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Node/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/SCons/Node/__init__.py')
-rw-r--r--src/engine/SCons/Node/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/SCons/Node/__init__.py b/src/engine/SCons/Node/__init__.py
index daf79ba..4200965 100644
--- a/src/engine/SCons/Node/__init__.py
+++ b/src/engine/SCons/Node/__init__.py
@@ -741,12 +741,12 @@ class Node(object, with_metaclass(NoSlotsPyPy)):
if self.depends is not None:
for d in self.depends:
if d.missing():
- msg = "Explicit dependency `%s' not found, needed by target `%s'."
+ msg = "Explicit dependency '%s' not found, needed by target '%s'."
raise SCons.Errors.StopError(msg % (d, self))
if self.implicit is not None:
for i in self.implicit:
if i.missing():
- msg = "Implicit dependency `%s' not found, needed by target `%s'."
+ msg = "Implicit dependency '%s' not found, needed by target '%s'."
raise SCons.Errors.StopError(msg % (i, self))
self.binfo = self.get_binfo()