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