Skip to content

Commit

Permalink
remove the extra dot in auto-switch.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ericbsd committed Jun 25, 2021
1 parent b3abf5d commit 7a0ff47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/auto-switch.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
r"ppp|bridge|ixautomation|vm-ixautomation|wg)[0-9]+(\s*)"

recompile = re.compile(notnics_regex)
nics = recompile.sub('', nics).replace(nic, '').strip().
nics = recompile.sub('', nics).replace(nic, '').strip()

This comment has been minimized.

Copy link
@ericbsd

ericbsd Jun 26, 2021

Author Member

#64


if not nics:
exit()
Expand Down

0 comments on commit 7a0ff47

Please sign in to comment.