fixed variable names

This commit is contained in:
likhy 2023-04-30 11:11:44 -07:00
parent d8c4cb47fa
commit 10740cae92

View File

@ -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