sources: fix indentation

Fix indentation to make pylint happy.
This commit is contained in:
David Rheinsberg 2020-05-26 17:45:50 +02:00
parent 84dcadc7d2
commit c337af6795

View file

@ -136,12 +136,15 @@ def main(options, checksums, cache, output):
for checksum in checksums:
try:
subprocess.run([
"cp",
"--reflink=auto",
f"{cache}/{checksum}",
f"{output}/{checksum}"],
check=True)
subprocess.run(
[
"cp",
"--reflink=auto",
f"{cache}/{checksum}",
f"{output}/{checksum}",
],
check=True,
)
except subprocess.CalledProcessError as e:
json.dump({"error": e.output}, sys.stdout)
return 1