With the new layout change, in order to modify the default behavior in 6262+ (revert back to single season analysis), one needs to change line 48 in amazon_get_seasons_urls.py from
if len(season_urls)==0:
to
if False and len(season_urls)==0:
Alternatively, if you flip between scraping all seasons or individual ones often enough, have the modification be something like
want_all_seasons = False
if want_all_seasons and len(season_urls)==0:
and then just alternate between True and False for the want_all_seasons variable assignment (you must capitalise True/False when you use them)