system-info.txt was quoting ffmpeg lib names

This commit is contained in:
Campbell Barton 2015-08-18 16:09:51 +10:00
parent 6cee6607a2
commit 92fe4e52fd
Notes: blender-bot 2023-02-14 08:48:40 +01:00
Referenced by issue #45768, Random crashes while editing mesh with subsurface modifier.
Referenced by issue #45749, Segfault (missing MTFace cdlayer from SubSurf DM).
Referenced by issue #45663, [B. Internal] UV mapping render result in radial circles (with this file)
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ def write_sysinfo(op):
ffmpeg = bpy.app.ffmpeg
if ffmpeg.supported:
for lib in ("avcodec", "avdevice", "avformat", "avutil", "swscale"):
output.write("%r:%r%r\n" % (lib, " " * (10 - len(lib)),
output.write("%s:%s%r\n" % (lib, " " * (10 - len(lib)),
getattr(ffmpeg, lib + "_version_string")))
else:
output.write("Blender was built without FFmpeg support\n")