File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11AWSTemplateFormatVersion : ' 2010-09-09'
2- Description : Deployment of Cloud Intelligence Dashboards v0.2.40
2+ Description : Deployment of Cloud Intelligence Dashboards v0.2.41
33Metadata :
44 AWS::CloudFormation::Interface :
55 ParameterGroups :
@@ -1506,7 +1506,7 @@ Resources:
15061506 Description : An AWS managed layer with a cid-cmd package installed
15071507 Content :
15081508 S3Bucket : !Sub '${LambdaLayerBucketPrefix}-${AWS::Region}'
1509- S3Key : ' cid-resource-lambda-layer/cid-0.2.40 .zip' # replace version here if needed
1509+ S3Key : ' cid-resource-lambda-layer/cid-0.2.41 .zip' # replace version here if needed
15101510 CompatibleRuntimes :
15111511 - python3.10
15121512
Original file line number Diff line number Diff line change 11
2- __version__ = '0.2.40 '
2+ __version__ = '0.2.41 '
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ def read_csv(input_file_name):
2727 sniffer = csv .Sniffer ()
2828 try :
2929 # AWS Organization returns a CSV with a BOM (byte order mark) character = U+FEFF to specify encoding
30- first_character = open (input_file_name ).read (1 )
30+ first_character = open (input_file_name , errors = 'ignore' ).read (1 )
3131 encoding = 'utf-8-sig' if first_character == '\ufeff ' else 'utf-8'
3232
3333 with open (input_file_name , encoding = encoding , errors = 'ignore' ) as file_ :
You can’t perform that action at this time.
0 commit comments