mirror of https://gitlab.com/bashrc2/epicyon
Correct function name
parent
94893eeed6
commit
dee7d34bcf
|
@ -28,7 +28,7 @@ from media import path_is_transcript
|
||||||
from media import path_is_audio
|
from media import path_is_audio
|
||||||
from context import get_individual_post_context
|
from context import get_individual_post_context
|
||||||
from newswire import rss2header
|
from newswire import rss2header
|
||||||
from newswire import get_rs_sfrom_dict
|
from newswire import get_rss_from_dict
|
||||||
from newswire import rss2footer
|
from newswire import rss2footer
|
||||||
from pgp import actor_to_vcard
|
from pgp import actor_to_vcard
|
||||||
from pgp import actor_to_vcard_xml
|
from pgp import actor_to_vcard_xml
|
||||||
|
@ -4705,7 +4705,7 @@ def _get_newswire_feed(self, calling_domain: str, path: str,
|
||||||
http_404(self, 25)
|
http_404(self, 25)
|
||||||
return
|
return
|
||||||
|
|
||||||
msg = get_rs_sfrom_dict(self.server.newswire,
|
msg = get_rss_from_dict(self.server.newswire,
|
||||||
self.server.http_prefix,
|
self.server.http_prefix,
|
||||||
self.server.domain_full,
|
self.server.domain_full,
|
||||||
self.server.translate)
|
self.server.translate)
|
||||||
|
|
|
@ -1446,7 +1446,7 @@ def get_rss(base_dir: str, domain: str, session, url: str,
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
def get_rs_sfrom_dict(newswire: {},
|
def get_rss_from_dict(newswire: {},
|
||||||
http_prefix: str, domain_full: str,
|
http_prefix: str, domain_full: str,
|
||||||
translate: {}) -> str:
|
translate: {}) -> str:
|
||||||
"""Returns an rss feed from the current newswire dict.
|
"""Returns an rss feed from the current newswire dict.
|
||||||
|
|
Loading…
Reference in New Issue