From 67db8d596aaa873a7bad35b516c1d8fe4986b379 Mon Sep 17 00:00:00 2001 From: Ekene Izukanne Date: Wed, 27 Sep 2023 12:04:45 +0100 Subject: [PATCH] fix: fix backward incompatibility error --- config/python.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/python.go b/config/python.go index 0e82a48..acd8db4 100644 --- a/config/python.go +++ b/config/python.go @@ -97,7 +97,7 @@ func (p *Python) getVirtualEnvironment() (string, error) { // Builds the Python deployment package func (p *Python) Build(config *Config, functionContent string) (string, string, error) { - function := config.Lambda.Handler + function := config.Platform.Handler tempDir, err := os.MkdirTemp(os.TempDir(), "jerm-package") if err != nil { return "", "", err