From 53bc3d5fdb0788c6de6e8e08024134a219fe7d74 Mon Sep 17 00:00:00 2001 From: fiftin Date: Wed, 10 Jul 2024 23:07:09 +0500 Subject: [PATCH] feat(apps): python3 by default --- db_lib/ShellApp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db_lib/ShellApp.go b/db_lib/ShellApp.go index 17d525a2..58d161c6 100644 --- a/db_lib/ShellApp.go +++ b/db_lib/ShellApp.go @@ -86,7 +86,7 @@ func (t *ShellApp) makeShellCmd(args []string, environmentVars *[]string) *exec. case db.TemplateBash: command = "bash" case db.TemplatePython: - command = "python" + command = "python3" case db.TemplatePowerShell: command = "powershell" appArgs = []string{"-File"}