Skip to content

Commit

Permalink
fix graceful name for NSM clients
Browse files Browse the repository at this point in the history
  • Loading branch information
Houston4444 committed Feb 12, 2025
1 parent bc838a4 commit 1655122
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/patchichi_pb_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ def set_group_as_nsm_client(self, group: Group):
if icon_name is not None:
group.client_icon = icon_name
if '.' in group.name:
group.display_name = group.name.partition('.')[2]
group.graceful_name = group.name.partition('.')[2]

def select_port(self, full_port_name: str):
port = self.get_port_from_name(full_port_name)
Expand Down

0 comments on commit 1655122

Please sign in to comment.