From 10740cae92fbd7808f4295ccf356e30542df17e2 Mon Sep 17 00:00:00 2001 From: likhy Date: Sun, 30 Apr 2023 11:11:44 -0700 Subject: [PATCH] fixed variable names --- microblog.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/microblog.py b/microblog.py index 059c46f..6d16072 100644 --- a/microblog.py +++ b/microblog.py @@ -325,7 +325,7 @@ if __name__ == "__main__": elif subdir == "placeholder": lvl = 1 tcloud = make_tagcloud(tagcloud, "./tags/%s/latest.html") - with open ("follows.html", 'w') as f: + with open ("webring.html", 'w') as f: print(pagectrl.singlepage(html, tcloud, timeline),file=f) else: # if timelines per tag is_tagline = True @@ -381,7 +381,7 @@ if __name__ == "__main__": try: with http.urlopen(someone) as response: data = response.read() - objects.append(json.loads(data)) + other_people.append(json.loads(data)) except http.HTTPError as e: print(e,": ", someone, file=sys.stderr) pass