From 6d0054826b75476e00eae27711cbff5975f0e41d Mon Sep 17 00:00:00 2001 From: Paul Wayper Date: Tue, 22 Jun 2021 14:56:06 +1000 Subject: [PATCH] Trivial formatting change to test public contribution system Signed-off-by: Paul Wayper --- test/test.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/test.py b/test/test.py index d82972a2..f8947785 100644 --- a/test/test.py +++ b/test/test.py @@ -401,7 +401,7 @@ class OSBuild(contextlib.AbstractContextManager): to_path = os.path.join(target, "sources", source) os.makedirs(to_path, exist_ok=True) - subprocess.run(["cp", "--reflink=auto", "-a", - os.path.join(from_path, "."), - to_path], - check=True) + subprocess.run([ + "cp", "--reflink=auto", "-a", + os.path.join(from_path, "."), to_path + ], check=True)