## 问题 `rss_feed.py` 的 `_to_rfc822()` 使用 `strftime` 在中文 locale 下输出非英文缩写,违反 RFC 822 规范。 ## 修复 使用 `email.utils.formatdate()` 或显式设置 locale。
问题
rss_feed.py的_to_rfc822()使用strftime在中文 locale 下输出非英文缩写,违反 RFC 822 规范。修复
使用
email.utils.formatdate()或显式设置 locale。