Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DO NOT MERGE: Temporarily commented out update schedule #132

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions nflgame/sched.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,14 +81,14 @@ def _create_schedule(jsonf=None):
missing_weeks = check_missing_weeks(sched, year, phase)
weeks_to_update = order_weeks_to_update(missing_weeks, current_week)

for week_to_update in weeks_to_update:
print(('Updating {}').format(week_to_update))
year, phase, week = week_to_update
week_was_updated = nflgame.update_sched.update_week(sched, year, phase, week)
if not week_was_updated:
print(("Week {}{} of {} was either empty, or it couldn't be fetched from NFL.com. Aborting.")\
.format(phase , week, year))
break
# for week_to_update in weeks_to_update:
# print(('Updating {}').format(week_to_update))
# year, phase, week = week_to_update
# week_was_updated = nflgame.update_sched.update_week(sched, year, phase, week)
# if not week_was_updated:
# print(("Week {}{} of {} was either empty, or it couldn't be fetched from NFL.com. Aborting.")\
# .format(phase , week, year))
# break

nflgame.update_sched.write_schedule(jsonf, sched)
last_updated = datetime.datetime.utcnow()
Expand Down