Skip to content

Commit 36a2630

Browse files
committed
Fix indentation error in BuildSrc
1 parent 5b5ab53 commit 36a2630

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

release-tool.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -968,11 +968,11 @@ def run(self, version, src_dir, output_dir, tag_name, yes, **kwargs):
968968
tf.add(fver, Path(prefix) / fver.name)
969969
tf.add(frev, Path(prefix) / frev.name)
970970

971-
logger.info('Compressing source tarball...')
972-
tmp_comp = tmp_export.with_suffix('.tar.xz')
973-
with lzma.open(tmp_comp, 'wb', preset=6) as f:
974-
f.write(tmp_export.read_bytes())
975-
tmp_comp.rename(output_file)
971+
logger.info('Compressing source tarball...')
972+
tmp_comp = tmp_export.with_suffix('.tar.xz')
973+
with lzma.open(tmp_comp, 'wb', preset=6) as f:
974+
f.write(tmp_export.read_bytes())
975+
tmp_comp.rename(output_file)
976976

977977

978978
class Notarize(Command):

0 commit comments

Comments
 (0)