mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-09-02 09:43:48 +00:00
cargo_wrapper: Fix mismatched quotes causing SyntaxError
Fixes https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/2471#note_3077591 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/2529>
This commit is contained in:
parent
9738c10ff0
commit
d81b7b1cdb
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ def generate_depfile_for(fpath, build_start_time, logfile=None):
|
|||
else:
|
||||
print(f'Not found', file=logfile)
|
||||
|
||||
depfile_content += f'{output}: {' '.join(all_deps)}\n'
|
||||
depfile_content += f"{output}: {' '.join(all_deps)}\n"
|
||||
|
||||
return depfile_content
|
||||
|
||||
|
|
Loading…
Reference in a new issue