Skip to content

scripts/get_amdgpu_fw_version.py: Fix f-string backward compatibility

Leo Li requested to merge leoli/amd:master into master

Prior to python3.12, quotes in f-strings have to be escaped in one way or another. See: https://docs.python.org/3/whatsnew/3.12.html#whatsnew312-pep701

Allow compatibility with python versions < 3.12 by using mixed quotes.

Merge request reports