Skip to content

Commit

Permalink
[chiptool.py] Remove the dot in the cluster name for the chip-tool ad…
Browse files Browse the repository at this point in the history
…apter before sending it over the wire (#27260)

Co-authored-by: Matt Hazley <hello@matthazley.com>
  • Loading branch information
2 people authored and pull[bot] committed Aug 24, 2023
1 parent 03ac012 commit 2408194
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 2408194

Please sign in to comment.