diff options
| author | Eli Schwartz <eschwartz93@gmail.com> | 2024-08-29 18:46:44 -0400 |
|---|---|---|
| committer | Eli Schwartz <eschwartz93@gmail.com> | 2024-08-30 15:44:13 -0400 |
| commit | 19847ba24a5a6e7c33c4e00a49842d77f7c5a4a3 (patch) | |
| tree | 0aed0c65525044ecb5cb6cd6a08aa568bd3d7262 /mesonbuild/mparser.py | |
| parent | 29797f92f818744adcdb354ca798036168608ac7 (diff) | |
| download | meson-19847ba24a5a6e7c33c4e00a49842d77f7c5a4a3.tar.gz | |
update various deprecation notices to call out meson 2.0
Diffstat (limited to 'mesonbuild/mparser.py')
| -rw-r--r-- | mesonbuild/mparser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mparser.py b/mesonbuild/mparser.py index fc37d2a54..79ece3789 100644 --- a/mesonbuild/mparser.py +++ b/mesonbuild/mparser.py @@ -362,7 +362,7 @@ class ArgumentNode(BaseNode): def set_kwarg(self, name: IdNode, value: BaseNode) -> None: if any((isinstance(x, IdNode) and name.value == x.value) for x in self.kwargs): mlog.warning(f'Keyword argument "{name.value}" defined multiple times.', location=self) - mlog.warning('This will be an error in future Meson releases.') + mlog.warning('This will be an error in Meson 2.0.') self.kwargs[name] = value def set_kwarg_no_check(self, name: BaseNode, value: BaseNode) -> None: |
