Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions s3_deploy/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
import boto3

from six import BytesIO
from six.moves.urllib.parse import quote_plus

from . import config
from .prefixcovertree import PrefixCoverTree
Expand Down Expand Up @@ -234,8 +233,7 @@ def path_from_key_name(key_name):
InvalidationBatch=dict(
Paths=dict(
Quantity=len(paths),
Items=['<Path>' + quote_plus(p) + '</Path>'
for p in paths]
Items=paths
),
CallerReference='s3-deploy-website'
)
Expand Down