Skip to content

Commit a74a1ed

Browse files
committed
Merge branch 'master' of github.com:nficano/python-lambda
* 'master' of github.com:nficano/python-lambda: Corrected 'deploy_s3' argument name
2 parents 7c0ed32 + e56ca02 commit a74a1ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aws_lambda/aws_lambda.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def deploy(
112112

113113

114114
def deploy_s3(
115-
src, requirements=False, local_package=None, config_file='config.yaml',
115+
src, use_requirements=False, local_package=None, config_file='config.yaml',
116116
):
117117
"""Deploys a new function via AWS S3.
118118
@@ -132,7 +132,7 @@ def deploy_s3(
132132
# Zip the contents of this folder into a single file and output to the dist
133133
# directory.
134134
path_to_zip_file = build(
135-
src, config_file=config_file, use_requirements=requirements,
135+
src, config_file=config_file, use_requirements=use_requirements,
136136
local_package=local_package,
137137
)
138138

0 commit comments

Comments
 (0)