Skip to content

Commit

Permalink
Merge branch 'master' into update_mode_select_xml_following_spec_pr_7151
Browse files Browse the repository at this point in the history
  • Loading branch information
hicklin authored Jun 15, 2023
2 parents 21f39e5 + b9f0476 commit fb49a7c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ def __to_lower_camel_case(self, name):
return name[:1].lower() + name[1:]

def __format_cluster_name(self, name):
return name.lower().replace(' ', '').replace('/', '').lower()
return name.lower().replace(' ', '').replace('/', '').replace('.', '').lower()

def __format_command_name(self, name):
if name is None:
Expand Down

0 comments on commit fb49a7c

Please sign in to comment.