Skip to content

Commit

Permalink
Merge pull request #242 from nischalstha9/fix/nw-interface-selection-…
Browse files Browse the repository at this point in the history
…ubuntu24

Fix: network selection changing interface name to lowercase
  • Loading branch information
noliveleger authored Jun 27, 2024
2 parents 2827412 + e9f66e3 commit c586738
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion helpers/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,8 @@ def __detect_network(self):
choices.append('other')
response = CLI.get_response(
choices,
default=self.__dict['local_interface']
default=self.__dict['local_interface'],
to_lower=False
)

if response == 'other':
Expand Down

0 comments on commit c586738

Please sign in to comment.