Skip to content

Commit

Permalink
Reorder keys
Browse files Browse the repository at this point in the history
  • Loading branch information
kashav committed Apr 28, 2016
1 parent 845be1b commit c19aff6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion uoftscrapers/scrapers/athletics/utm.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ def scrape(location='.', month=None, save=True):

events.append(OrderedDict([
('title', title),
('location', location_),
('campus', 'UTM'),
('location', location_),
('building_id', '332'),
('start_time', start),
('end_time', end),
Expand Down
2 changes: 1 addition & 1 deletion uoftscrapers/scrapers/athletics/utsc.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ def scrape(location='.', month=None, save=True):

events.append(OrderedDict([
('title', title.replace('/ ', '/')),
('location', location_),
('campus', 'UTSC'),
('location', location_),
('building_id', '208'),
('start_time', start),
('end_time', end),
Expand Down

0 comments on commit c19aff6

Please sign in to comment.