aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/interpreterbase.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2020-07-30 16:39:04 +0300
committerGitHub <noreply@github.com>2020-07-30 16:39:04 +0300
commitbbf8533a97481685d6e840de3d44372bae5d620e (patch)
tree171cc260b1f53dbba42e1504d7c629d6b78de95b /mesonbuild/interpreterbase.py
parent8da1b29899e795d87f0a4e51adb532119af48727 (diff)
parent7ef51abfc565b147273097201f8eb286b1688736 (diff)
downloadmeson-bbf8533a97481685d6e840de3d44372bae5d620e.zip
meson-bbf8533a97481685d6e840de3d44372bae5d620e.tar.gz
meson-bbf8533a97481685d6e840de3d44372bae5d620e.tar.bz2
Merge pull request #7494 from keszybz/fix-two-warnings
Fix two warnings
Diffstat (limited to 'mesonbuild/interpreterbase.py')
-rw-r--r--mesonbuild/interpreterbase.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/interpreterbase.py b/mesonbuild/interpreterbase.py
index 9f35601..822167c 100644
--- a/mesonbuild/interpreterbase.py
+++ b/mesonbuild/interpreterbase.py
@@ -330,7 +330,7 @@ class FeatureDeprecated(FeatureCheckBase):
@staticmethod
def check_version(target_version: str, feature_version: str) -> bool:
- # For deprecatoin checks we need to return the inverse of FeatureNew checks
+ # For deprecation checks we need to return the inverse of FeatureNew checks
return not mesonlib.version_compare_condition_with_min(target_version, feature_version)
@staticmethod