diff --git a/default.py b/default.py index dca0630d..1b6cbd66 100644 --- a/default.py +++ b/default.py @@ -83,8 +83,8 @@ class Main(): int(params['limit'])) elif mode == 'inprogressepisodes': - entrypoint.getInProgressEpisodes(params['tagname'], - int(params['limit'])) + entrypoint.in_progress_episodes(params['tagname'], + int(params['limit'])) elif mode == 'browseplex': entrypoint.browse_plex(key=params.get('key'), diff --git a/resources/lib/entrypoint.py b/resources/lib/entrypoint.py index 567b34c2..0b7d7744 100644 --- a/resources/lib/entrypoint.py +++ b/resources/lib/entrypoint.py @@ -333,8 +333,10 @@ def next_up_episodes(tagname, limit): xbmcplugin.endOfDirectory(handle=HANDLE) -##### GET INPROGRESS EPISODES FOR TAGNAME ##### -def getInProgressEpisodes(tagname, limit): +def in_progress_episodes(tagname, limit): + """ + List the episodes that are in progress for tagname + """ count = 0 # if the addon is called with inprogressepisodes parameter, # we return the inprogressepisodes list of the given tagname