aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/gstreamer.py
diff options
context:
space:
mode:
authorMartin Robinson <mrobinson@igalia.com>2024-08-05 11:28:13 +0200
committerGitHub <noreply@github.com>2024-08-05 09:28:13 +0000
commit45aa296b2658e47eea38134298351a20a74e0fa6 (patch)
tree70829e845b8bc75ac57ec9b15a5939f3354f7b12 /python/servo/gstreamer.py
parent10b06f01292a4d9b7d73a41fe134ad355e05b2a0 (diff)
downloadservo-45aa296b2658e47eea38134298351a20a74e0fa6.tar.gz
servo-45aa296b2658e47eea38134298351a20a74e0fa6.zip
build: Fix a print statement when repackaging GStreamer (#32932)
I neglected to put make a string a formatted string, which means that the variable won't be included in the output properly. Signed-off-by: Martin Robinson <mrobinson@igalia.com>
Diffstat (limited to 'python/servo/gstreamer.py')
-rw-r--r--python/servo/gstreamer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/gstreamer.py b/python/servo/gstreamer.py
index b7e68a0772f..fea93660dbb 100644
--- a/python/servo/gstreamer.py
+++ b/python/servo/gstreamer.py
@@ -272,7 +272,7 @@ def package_gstreamer_dylibs(binary_path: str, library_target_directory: str, cr
return True
if os.path.exists(library_target_directory):
- print(" • Packaged GStreamer is out of date. Rebuilding into {library_target_directory}")
+ print(f" • Packaged GStreamer is out of date. Rebuilding into {library_target_directory}")
shutil.rmtree(library_target_directory)
else:
print(f" • Packaging GStreamer into {library_target_directory}")