diff options
author | LeSasse <l.sasse@fz-juelich.de> | 2024-03-27 09:44:45 +0100 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-03-28 08:49:23 +0100 |
commit | 84188d15656a8b309216d4eba2fc47787ebcdf3d (patch) | |
tree | 2f85a2bb4010f03fb04de83849db5bd70e018b66 /bin/update | |
parent | 9e424d98e5af9f6219398e02cb05c454471c237d (diff) |
tdf#158803 fix fstring
Change-Id: I5443341ce308ea0f9906b54c02c51785aa624e6f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165375
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'bin/update')
-rw-r--r-- | bin/update/tools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/update/tools.py b/bin/update/tools.py index 1c5588cb5470..2ec3d8cf7ae1 100644 --- a/bin/update/tools.py +++ b/bin/update/tools.py @@ -12,7 +12,7 @@ def uncompress_file_to_dir(compressed_file, uncompress_dir): 'msiexec', '/a', convert_to_native(compressed_file).replace('/', '\\'), '/quiet', 'TARGETDIR=' + convert_to_native(uncompress_dir).replace('/', '\\')]) != 0: - raise Exception(f'msiexec failed') + raise Exception('msiexec failed') return uncompress_dir |