Skip to content

Commit 381c239

Browse files
author
farfarfun
committed
Bump version to 1.1.73 and fix URL parsing warning in DownloadSource
1 parent 1717de4 commit 381c239

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "funread"
3-
version = "1.1.72"
3+
version = "1.1.73"
44
description = "一个用于管理和处理阅读源(Legado 阅读 APP 的书源和 RSS 源)的 Python 工具库"
55
readme = "README.md"
66
requires-python = ">=3.8"

src/funread/legado/manage/download/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ def add_source(self, source: Dict[str, Any], *args, **kwargs) -> bool:
323323
source_url = source[source_url_key]
324324
hostname = url_to_hostname(source_url)
325325
if hostname is None:
326-
logger.warning(f"Failed to parse hostname from URL: {source_url}:{source}")
326+
logger.warning(f"Failed to parse hostname from URL: {source_url}")
327327
return False
328328

329329
# 获取或创建 URL ID

0 commit comments

Comments
 (0)