Skip to content

Commit

Permalink
Merge branch 'master' into allowed_values
Browse files Browse the repository at this point in the history
  • Loading branch information
kddejong authored Jul 16, 2019
2 parents 10086f6 + b885448 commit 3a7eae1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cfnlint/rules/parameters/Cidr.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def check_cidr_ref(self, value, path, parameters, resources):
param_path = ['Parameters', value]
full_param_path = '/'.join(param_path)
message = 'AllowedPattern and/or AllowedValues for Parameter should be specified at {1}. ' \
'Example for AllowedPattern: "{0}"'
'Example for AllowedPattern: \'{0}\''
matches.append(RuleMatch(param_path, message.format(REGEX_CIDR.pattern, full_param_path)))

return matches
Expand Down

0 comments on commit 3a7eae1

Please sign in to comment.