Skip to content

Commit b520fb6

Browse files
committed
Update rss.py
1 parent e74038f commit b520fb6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_ext/rss.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def from_meta(cls, page_name: str, meta: dict, app: "Sphinx") -> "RSSItem":
3838
title=meta[":og:title"],
3939
description=meta[":og:description"],
4040
date=datetime.fromisoformat(meta["date"]),
41-
author=meta.get(":og:author", "PyOpenSci"),
41+
author=meta.get(":og:author", "pyOpenSci"),
4242
url=url,
4343
)
4444

@@ -58,7 +58,7 @@ def render(self) -> str:
5858
class RSSFeed:
5959
items: list[RSSItem]
6060
last_build_date: datetime = datetime.now()
61-
title: str = "PyOpenSci Tutorials"
61+
title: str = "pyOpenSci Tutorials"
6262
link: str = "https://www.pyopensci.org/python-package-guide/tutorials/intro.html"
6363
self_link: str = "https://www.pyopensci.org/python-package-guide/tutorials.rss"
6464
description: str = "Tutorials for learning python i guess!!!"

0 commit comments

Comments
 (0)