Skip to content

Commit

Permalink
Merge pull request #22 from srl-labs/fix_uppercase_nodenames
Browse files Browse the repository at this point in the history
node names to lower case
  • Loading branch information
FloSch62 authored Dec 20, 2024
2 parents 4095a52 + d32e7db commit 3e11442
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clab2drawio.py
Original file line number Diff line number Diff line change
Expand Up @@ -1068,7 +1068,7 @@ def main(
formatted_node_name = format_node_name(node_name, prefix, lab_name)

node = Node(
name=formatted_node_name,
name=formatted_node_name.lower(),
label=node_name,
kind=node_data.get("kind", ""),
mgmt_ipv4=node_data.get("mgmt_ipv4", ""),
Expand Down

0 comments on commit 3e11442

Please sign in to comment.