aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2021-01-14 08:48:43 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2021-01-14 22:00:51 +0000
commitf13b2b4b1d3e606e78b9dbd1a9b263e8384d8457 (patch)
treea46626f7f6907d9f4468d8911fc0e200aed8d125 /mesonbuild
parent5db77fd103eb7a1248791402caa3c977f6a8241c (diff)
downloadmeson-f13b2b4b1d3e606e78b9dbd1a9b263e8384d8457.zip
meson-f13b2b4b1d3e606e78b9dbd1a9b263e8384d8457.tar.gz
meson-f13b2b4b1d3e606e78b9dbd1a9b263e8384d8457.tar.bz2
mtest: fix flake8
Diffstat (limited to 'mesonbuild')
-rw-r--r--mesonbuild/mtest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/mtest.py b/mesonbuild/mtest.py
index 59d2389..1485e53 100644
--- a/mesonbuild/mtest.py
+++ b/mesonbuild/mtest.py
@@ -1651,8 +1651,8 @@ def rebuild_deps(wd: str, tests: T.List[TestSerialisation]) -> bool:
intro_targets = dict() # type: T.Dict[str, T.List[str]]
for target in load_info_file(get_infodir(wd), kind='targets'):
intro_targets[target['id']] = [
- os.path.relpath(f, wd)
- for f in target['filename']]
+ os.path.relpath(f, wd)
+ for f in target['filename']]
for t in tests:
for d in t.depends:
if d in depends: