Skip to content

Commit

Permalink
Fix: network selection changing interface name to lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
nischalstha9 committed Jun 12, 2024
1 parent 50f0f03 commit e9f66e3
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 e9f66e3

Please sign in to comment.