aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/astinterpreter.py
diff options
context:
space:
mode:
authorIgor Gnatenko <i.gnatenko.brain@gmail.com>2016-12-18 17:04:51 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2016-12-18 18:32:17 +0200
commit3b55f6de8c953335da19f1c6c5f823026845e0f2 (patch)
tree49552752dc8f9d73964e82ea47e5e630179a4dd3 /mesonbuild/astinterpreter.py
parentc693bd9bb4be3b2f5413277aba723cb58223b44b (diff)
downloadmeson-3b55f6de8c953335da19f1c6c5f823026845e0f2.zip
meson-3b55f6de8c953335da19f1c6c5f823026845e0f2.tar.gz
meson-3b55f6de8c953335da19f1c6c5f823026845e0f2.tar.bz2
s/Nonexistant/Nonexistent/g
There is basically no such word in english, "nonexistant". American people use "nonexistent" and British people used to have "non-existent", but some time ago they did away with the hyphens, so there is only one option really: "nonexistent". Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
Diffstat (limited to 'mesonbuild/astinterpreter.py')
-rw-r--r--mesonbuild/astinterpreter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/astinterpreter.py b/mesonbuild/astinterpreter.py
index 3691d64..7a83736 100644
--- a/mesonbuild/astinterpreter.py
+++ b/mesonbuild/astinterpreter.py
@@ -129,7 +129,7 @@ class AstInterpreter(interpreterbase.InterpreterBase):
absname = os.path.join(self.source_root, buildfilename)
if not os.path.isfile(absname):
self.subdir = prev_subdir
- raise InterpreterException('Nonexistant build def file %s.' % buildfilename)
+ raise InterpreterException('Nonexistent build def file %s.' % buildfilename)
with open(absname, encoding='utf8') as f:
code = f.read()
assert(isinstance(code, str))