Skip to content

Commit 0fb5bfa

Browse files
authoredMar 31, 2025··
fix: missed parsing revert reference
1 parent ec520f3 commit 0fb5bfa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎convert_json.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def rss_item(title: str | None = None,
5959
# Make GUID just YYYYMMDD for simplicity
6060
# RSS specification https://validator.w3.org/feed/docs/warning/MissingGuid.html
6161
item.append(ET.Element("guid"))
62-
item[-1].text = parser.parse(pubDate).strftime("%Y%m%d")
62+
item[-1].text = fmt_date.strftime("%Y%m%d")
6363

6464
return item
6565

0 commit comments

Comments
 (0)
Please sign in to comment.