diff options
author | Martin Robinson <mrobinson@igalia.com> | 2024-08-05 11:28:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-05 09:28:13 +0000 |
commit | 45aa296b2658e47eea38134298351a20a74e0fa6 (patch) | |
tree | 70829e845b8bc75ac57ec9b15a5939f3354f7b12 /python/servo/gstreamer.py | |
parent | 10b06f01292a4d9b7d73a41fe134ad355e05b2a0 (diff) | |
download | servo-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.py | 2 |
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}") |