Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
doadin committed Jan 30, 2025
1 parent 0c19b03 commit 50cc3c9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
runs-on: windows-2022
strategy:
matrix:
arch: [x64, x86]
python: ["3.9", "3.10"]
libtorrent: [2.0.9, 1.2.19]
arch: [x64]
python: ["3.10"]
libtorrent: [2.0.9]

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
Expand Down
2 changes: 2 additions & 0 deletions deluge/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -1068,6 +1068,8 @@ def is_interface_name(name):
except OSError:
return True
else:
log.info("Available Nice Names for Adapters:")
[log.info(a.nice_name)for a in adapters]
return any([name == a.name for a in adapters]) or any(
[name == a.nice_name for a in adapters]
)
Expand Down

0 comments on commit 50cc3c9

Please sign in to comment.