aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/interpreter.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/interpreter.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/interpreter.py')
-rw-r--r--mesonbuild/interpreter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/interpreter.py b/mesonbuild/interpreter.py
index 5dc87cc..c92adaf 100644
--- a/mesonbuild/interpreter.py
+++ b/mesonbuild/interpreter.py
@@ -2023,7 +2023,7 @@ requirements use the version keyword argument instead.''')
absname = os.path.join(self.environment.get_source_dir(), 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))