fix f string not working on older versions of python (#2715)

pull/2719/head
podd0 11 months ago committed by GitHub
parent 1ce7ee36e8
commit a538b6737f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -51,9 +51,10 @@ def debugger_version():
def all_versions():
py_version = sys.version.replace("\n", " ")
return (
f"Pwndbg: {pwndbg.__version__}",
f"Python: {sys.version.replace('\n', ' ')}",
f"Python: {py_version}",
debugger_version(),
f"Capstone: {module_version('capstone')}",
f"Unicorn: {module_version('unicorn')}",

Loading…
Cancel
Save