aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/modules/sourceset.py
diff options
context:
space:
mode:
authorMichael <michaelbrockus@gmail.com>2020-04-18 23:11:16 -0700
committerJussi Pakkanen <jpakkane@gmail.com>2020-04-21 00:16:21 +0300
commitc53b6379597be5961b4e69e7f187608452874e4c (patch)
treeeade9c7e52c6940a236f595a728a638ad008f9cf /mesonbuild/modules/sourceset.py
parent182f40d25add336531b4127e410af8bcbe067575 (diff)
downloadmeson-c53b6379597be5961b4e69e7f187608452874e4c.zip
meson-c53b6379597be5961b4e69e7f187608452874e4c.tar.gz
meson-c53b6379597be5961b4e69e7f187608452874e4c.tar.bz2
switch python2 %s for python3 .format
Diffstat (limited to 'mesonbuild/modules/sourceset.py')
-rw-r--r--mesonbuild/modules/sourceset.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/sourceset.py b/mesonbuild/modules/sourceset.py
index a14bd70..e23e12e 100644
--- a/mesonbuild/modules/sourceset.py
+++ b/mesonbuild/modules/sourceset.py
@@ -150,7 +150,7 @@ class SourceSetHolder(MutableInterpreterObject, ObjectHolder):
if isinstance(config_data, dict):
def _get_from_config_data(key):
if strict and key not in config_data:
- raise InterpreterException('Entry %s not in configuration dictionary.' % key)
+ raise InterpreterException('Entry {} not in configuration dictionary.'.format(key))
return config_data.get(key, False)
else:
config_cache = dict()