diff --git a/genbloglist.py b/genbloglist.py index 6487d40..cd9c63f 100644 --- a/genbloglist.py +++ b/genbloglist.py @@ -28,7 +28,7 @@ with open(sys.argv[1]) as file, open(sys.argv[2], 'w+') as out: desc = d['feed'].get('description') text = f'
  • {html.escape(d["feed"]["title"])} (feed)' if desc := d['feed'].get('description'): - text += f': {html.escape(d["feed"]["description"])}' + text += f': {html.escape(desc)}' else: text += '' text += '
  • \n'