2
0
mirror of https://github.com/xcat2/confluent.git synced 2025-09-02 16:28:27 +00:00

Fix loss of uppercase during reverse noderange

Reverse noderang was changing names to lower case,
fix to preserve case.
This commit is contained in:
Jarrod Johnson
2025-05-15 16:30:12 -04:00
parent 8111a13554
commit ee53ee47c1

View File

@@ -57,7 +57,7 @@ def humanify_nodename(nodename):
def unnumber_nodename(nodename):
# stub out numbers
chunked = ["{}" if text.isdigit() else text.lower()
chunked = ["{}" if text.isdigit() else text
for text in re.split(numregex, nodename)]
return chunked