Skip to content

Commit

Permalink
Disable upcoming matches listings for now
Browse files Browse the repository at this point in the history
  • Loading branch information
glennguy committed Dec 1, 2017
1 parent de818cf commit 465e1b7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions resources/lib/comm.py
Expand Up @@ -260,14 +260,14 @@ def get_live_videos():

if video:
video_list.append(video)

upcoming_videos = get_round('latest', True)
for match in upcoming_videos:
v = classes.Video()
v.title = match['name']
v.isdummy = True
v.url = 'null'
video_list.append(v)
# disabled for now
#upcoming_videos = get_round('latest', True)
#for match in upcoming_videos:
# v = classes.Video()
# v.title = match['name']
# v.isdummy = True
# v.url = 'null'
# video_list.append(v)
return video_list


Expand Down

0 comments on commit 465e1b7

Please sign in to comment.