Skip to content

Commit c586738

Browse files
authored
Merge pull request #242 from nischalstha9/fix/nw-interface-selection-ubuntu24
Fix: network selection changing interface name to lowercase
2 parents 2827412 + e9f66e3 commit c586738

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

helpers/config.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -812,7 +812,8 @@ def __detect_network(self):
812812
choices.append('other')
813813
response = CLI.get_response(
814814
choices,
815-
default=self.__dict['local_interface']
815+
default=self.__dict['local_interface'],
816+
to_lower=False
816817
)
817818

818819
if response == 'other':

0 commit comments

Comments
 (0)