summaryrefslogtreecommitdiff
path: root/bin/update/tools.py
diff options
context:
space:
mode:
Diffstat (limited to 'bin/update/tools.py')
-rw-r--r--bin/update/tools.py2
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