From f13b2b4b1d3e606e78b9dbd1a9b263e8384d8457 Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Thu, 14 Jan 2021 08:48:43 +0100 Subject: mtest: fix flake8 --- mesonbuild/mtest.py | 4 ++-- 1 file 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: -- cgit v1.1