Skip to content

Commit

Permalink
Remove duration
Browse files Browse the repository at this point in the history
  • Loading branch information
BigNoid committed Feb 17, 2014
1 parent 490cbb3 commit ffce7e5
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions service.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,6 @@ def parse_movies(self, request, list_type):
liz.setInfo( type="Video", infoLabels={ "Plot": plot })
liz.setInfo( type="Video", infoLabels={ "PlotOutline": item['plotoutline'] })
liz.setInfo( type="Video", infoLabels={ "Tagline": item['tagline'] })
liz.setInfo( type="Video", infoLabels={ "Duration": item['runtime']/60 })
liz.setInfo( type="Video", infoLabels={ "Rating": str(float(item['rating'])) })
liz.setInfo( type="Video", infoLabels={ "Votes": item['votes'] })
liz.setInfo( type="Video", infoLabels={ "MPAA": item['mpaa'] })
Expand Down Expand Up @@ -316,7 +315,6 @@ def parse_tvshows_recommended(self, request, list_type):
liz.setInfo( type="Video", infoLabels={ "Premiered": item2['firstaired'][0] })
liz.setInfo( type="Video", infoLabels={ "Plot": plot })
liz.setInfo( type="Video", infoLabels={ "TVshowTitle": item2['showtitle'] })
liz.setInfo( type="Video", infoLabels={ "Duration": item2['runtime']/60 })
liz.setInfo( type="Video", infoLabels={ "Rating": str(round(float(item2['rating']),1)) })
liz.setInfo( type="Video", infoLabels={ "MPAA": item['mpaa'] })
liz.setInfo( type="Video", infoLabels={ "Playcount": item2['playcount'] })
Expand Down Expand Up @@ -364,7 +362,6 @@ def parse_tvshows(self, request, list_type):
liz.setInfo( type="Video", infoLabels={ "Premiered": item['firstaired'] })
liz.setInfo( type="Video", infoLabels={ "Plot": plot })
liz.setInfo( type="Video", infoLabels={ "TVshowTitle": item['showtitle'] })
liz.setInfo( type="Video", infoLabels={ "Duration": item['runtime']/60 })
liz.setInfo( type="Video", infoLabels={ "Rating": str(round(float(item['rating']),1)) })
#liz.setInfo( type="Video", infoLabels={ "MPAA": item['mpaa'] })
liz.setInfo( type="Video", infoLabels={ "Playcount": item['playcount'] })
Expand Down

0 comments on commit ffce7e5

Please sign in to comment.