Skip to content

Commit 2e26bb1

Browse files
mrobinsonGae24
authored andcommitted
build: Fix a print statement when repackaging GStreamer (servo#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>
1 parent 65c4aa0 commit 2e26bb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/servo/gstreamer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ def package_gstreamer_dylibs(binary_path: str, library_target_directory: str, cr
272272
return True
273273

274274
if os.path.exists(library_target_directory):
275-
print(" • Packaged GStreamer is out of date. Rebuilding into {library_target_directory}")
275+
print(f" • Packaged GStreamer is out of date. Rebuilding into {library_target_directory}")
276276
shutil.rmtree(library_target_directory)
277277
else:
278278
print(f" • Packaging GStreamer into {library_target_directory}")

0 commit comments

Comments
 (0)