1diff --git a/xpra/scripts/main.py b/xpra/scripts/main.py
2index 7806612e05..4c7a0ec2dd 100755
3--- a/xpra/scripts/main.py
4+++ b/xpra/scripts/main.py
5@@ -444,13 +444,7 @@ def run_mode(script_file: str, cmdline, error_cb, options, args, full_mode: str,
6 "seamless", "desktop", "shadow", "shadow-screen", "expand",
7 "upgrade", "upgrade-seamless", "upgrade-desktop",
8 ) and not display_is_remote and options.daemon and use_systemd_run(options.systemd_run):
9- # make sure we run via the same interpreter,
10- # inject it into the command line if we have to:
11 argv = list(cmdline)
12- if argv[0].find("python") < 0:
13- major, minor = sys.version_info.major, sys.version_info.minor
14- python = which("python%i.%i" % (major, minor)) or which("python%i" % major) or which("python") or "python"
15- argv.insert(0, python)
16 return systemd_run_wrap(mode, argv, options.systemd_run_args, user=getuid() != 0)
17 configure_env(options.env)
18 configure_logging(options, mode)