2
0
mirror of https://github.com/xcat2/confluent.git synced 2026-04-12 20:01:30 +00:00

Change comment to not have unicode

Some environments don't like the UTF
This commit is contained in:
Jarrod Johnson
2025-08-11 12:10:33 -04:00
parent c9b9275bb1
commit fc6c1495d3

View File

@@ -464,7 +464,7 @@ def get_available_nics():
parts = re.split(r'\s{2,}', line.strip())
if len(parts) >= 5:
nic_name = parts[0]
nic_status = parts[4] # "Link Status" este al 5-lea câmp
nic_status = parts[4] # "Link Status" is the 5th field
available_nics[nic_name] = nic_status
return available_nics