Skip to content

Commit

Permalink
can't use these f-strings with older Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Jun 21, 2024
1 parent 8b56099 commit a74a949
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/scripts/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1689,7 +1689,7 @@ def run_opengl_probe():
env["XPRA_REDIRECT_OUTPUT"] = "0"
start = monotonic()
kwargs = exec_kwargs(stderr=PIPE)
log(f"run_opengl_probe() using cmd={cmd} with env={env=} and {kwargs=}")
log("run_opengl_probe() using cmd=%s with env=%s and kwargs=%s", cmd, env, kwargs)
try:
proc = Popen(cmd, stdout=PIPE, env=env, universal_newlines=True, **kwargs)
except Exception as e:
Expand Down

0 comments on commit a74a949

Please sign in to comment.