Skip to content

Commit

Permalink
fix(downloader): invalid transmission rpc url (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
xyqyear committed Apr 15, 2023
1 parent 20af44a commit 4a8133c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bangumi/downloader/transmission.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ def __init__(self, **kwargs):
logger.info(f"Transmission Connecting to {host}:{port}")

self.client = Client(
host=f"{host}:{port}",
host=host,
port=port,
username=username,
password=password,
)
Expand Down

0 comments on commit 4a8133c

Please sign in to comment.