From 36a26308d0cf8fc548a57e093b1fb3fc6ebe8a44 Mon Sep 17 00:00:00 2001 From: Janek Bevendorff Date: Tue, 10 Mar 2026 02:05:31 +0100 Subject: [PATCH] Fix indentation error in BuildSrc --- release-tool.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/release-tool.py b/release-tool.py index cbab2c6d1..30c7e75d6 100755 --- a/release-tool.py +++ b/release-tool.py @@ -968,11 +968,11 @@ class BuildSrc(Command): tf.add(fver, Path(prefix) / fver.name) tf.add(frev, Path(prefix) / frev.name) - logger.info('Compressing source tarball...') - tmp_comp = tmp_export.with_suffix('.tar.xz') - with lzma.open(tmp_comp, 'wb', preset=6) as f: - f.write(tmp_export.read_bytes()) - tmp_comp.rename(output_file) + logger.info('Compressing source tarball...') + tmp_comp = tmp_export.with_suffix('.tar.xz') + with lzma.open(tmp_comp, 'wb', preset=6) as f: + f.write(tmp_export.read_bytes()) + tmp_comp.rename(output_file) class Notarize(Command):