undo column sizing, fix linearly expanding datasets (lag), fix episode ranges being incorrect, more print statements

This commit is contained in:
Xevion
2020-03-10 00:10:43 -05:00
parent a7130ddf56
commit dfa2797bce
3 changed files with 12 additions and 8 deletions

View File

@@ -18,7 +18,7 @@ def viewSeason(season):
def viewEpisode(season, episode):
e = Episode.query.filter_by(season_id=season, number=episode).first_or_404()
if not e.built:
print("Rebuilding")
print(f"Rebuilding s{season} e{episode}")
e.build()
return render_template("episode.html", episode=e, seasons=Season.query.all())