From 0c9a1c6568d4eb6ae30a3aae769dcf2b0b361791 Mon Sep 17 00:00:00 2001 From: Jared Hobbs Date: Tue, 11 Aug 2020 15:54:08 -0600 Subject: [PATCH] fix: typo --- zappa/handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zappa/handler.py b/zappa/handler.py index 602380f8b..4de71716b 100644 --- a/zappa/handler.py +++ b/zappa/handler.py @@ -406,7 +406,7 @@ def handler(self, event, context): # Couldn't figure out how to get the value into stdout with StringIO.. # Read the log for now. :[] - management.call_command(shlex.split(*event['manage'])) + management.call_command(*shlex.split(event['manage'])) return {} # This is an AWS-event triggered invocation.