Advertisement
Guest User

Untitled

a guest
Jan 15th, 2012
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. xbmc@xbmc:~/.xbmc/addons/plugin.video.jtv.archives$ diff -upN /tmp/plugin.video.jtv.archives/default.py default.py
  2. --- /tmp/plugin.video.jtv.archives/default.py 2012-01-02 09:08:24.000000000 +0000
  3. +++ default.py 2012-01-15 13:10:25.577322281 +0000
  4. @@ -319,8 +319,9 @@ def getVideos(name):
  5. url = i['video_file_url']
  6. title = i['title']
  7. part = 'Part: '+i['broadcast_part']
  8. - if i['last_part'] == 'true':
  9. - part += ' - Last Part'
  10. + if 'last_part' in i.keys():
  11. + if i['last_part'] == 'true':
  12. + part += ' - Last Part'
  13. started = i['start_time']
  14. created = i['created_on']
  15. thumb = i['image_url_medium']
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement