summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Script/SConscript.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2003-12-08 12:23:44 (GMT)
committerSteven Knight <knight@baldmt.com>2003-12-08 12:23:44 (GMT)
commit5d901003397326b8735482823a1221af8fe1acb4 (patch)
treec8cc2c97c5c9e073c047b38aed865afb73401650 /src/engine/SCons/Script/SConscript.py
parent69fad99f14c6ae0ba16db7ffda4d892fb2381f53 (diff)
downloadSCons-5d901003397326b8735482823a1221af8fe1acb4.zip
SCons-5d901003397326b8735482823a1221af8fe1acb4.tar.gz
SCons-5d901003397326b8735482823a1221af8fe1acb4.tar.bz2
Fix spelling errors in error messages, man page typos.
Diffstat (limited to 'src/engine/SCons/Script/SConscript.py')
-rw-r--r--src/engine/SCons/Script/SConscript.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine/SCons/Script/SConscript.py b/src/engine/SCons/Script/SConscript.py
index bd122d8..0c9b22f 100644
--- a/src/engine/SCons/Script/SConscript.py
+++ b/src/engine/SCons/Script/SConscript.py
@@ -124,7 +124,7 @@ def compute_exports(exports):
except KeyError:
retval[export] = glob[export]
except KeyError, x:
- raise SCons.Errors.UserError, "Export of non-existant variable '%s'"%x
+ raise SCons.Errors.UserError, "Export of non-existent variable '%s'"%x
return retval
@@ -154,7 +154,7 @@ def Return(*vars):
for v in string.split(var):
retval.append(stack[-1].globals[v])
except KeyError, x:
- raise SCons.Errors.UserError, "Return of non-existant variable '%s'"%x
+ raise SCons.Errors.UserError, "Return of non-existent variable '%s'"%x
if len(retval) == 1:
stack[-1].retval = retval[0]
@@ -477,7 +477,7 @@ class SConsEnvironment(SCons.Environment.Base):
else:
stack[-1].globals[v] = global_exports[v]
except KeyError,x:
- raise SCons.Errors.UserError, "Import of non-existant variable '%s'"%x
+ raise SCons.Errors.UserError, "Import of non-existent variable '%s'"%x
def SConscript(self, *ls, **kw):
ls = map(lambda l, self=self: self.subst(l), ls)