Skip to content

Commit

Permalink
Fix a misspelled MNV genre icon. Patch from Doug Vaughan.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.mythtv.org/svn/trunk@26849 7dbf422c-18fa-0310-86e9-fd20926502f2
  • Loading branch information
Robert McNamara committed Oct 17, 2010
1 parent 25fcd66 commit 48772c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Expand Up @@ -19,7 +19,7 @@
for this api are published at http://developer.youtubenservices.com/docs
'''

__version__="v0.2.4"
__version__="v0.2.5"
# 0.1.0 Initial development
# 0.1.1 Added Tree view display option
# 0.1.2 Modified Tree view internals to be consistent in approach and structure.
Expand All @@ -33,6 +33,7 @@
# Removed the use of the feedparser library
# 0.2.3 Fixed an exception message output code error in two places
# 0.2.4 Removed the need for python MythTV bindings and added "%SHAREDIR%" to icon directory path
# 0.2.5 Fixed the Foreign Film icon file name

import os, struct, sys, re, time
import urllib, urllib2
Expand Down Expand Up @@ -266,7 +267,7 @@ def __init__(self,
'TV': 'directories/topics/tv',
'Movies': 'directories/topics/movies',
'Trailers': 'directories/film_genres/trailers',
'Movies_Action_adventure': 'directories/film_genres/action_adventure', 'Movies_Drama': 'directories/film_genres/drama', 'Movies_Sci_fi_fantasy': 'directories/film_genres/scifi', 'Movies_Thriller': 'directories/film_genres/thriller', 'Movies_Comedy': 'directories/film_genres/comedy', 'Movies_Classics': 'directories/film_genres/classics', 'Movies_Horror': 'directories/film_genres/horror', 'Movies_Family': 'directories/film_genres/family_films', 'Movies_Anime_animation': 'directories/film_genres/animation', 'Movies_Foreign': 'directories/film_genres/foriegn_films', 'Movies_Documentary': 'directories/film_genres/documentaries', 'Movies_Shorts': 'directories/film_genres/short_film',
'Movies_Action_adventure': 'directories/film_genres/action_adventure', 'Movies_Drama': 'directories/film_genres/drama', 'Movies_Sci_fi_fantasy': 'directories/film_genres/scifi', 'Movies_Thriller': 'directories/film_genres/thriller', 'Movies_Comedy': 'directories/film_genres/comedy', 'Movies_Classics': 'directories/film_genres/classics', 'Movies_Horror': 'directories/film_genres/horror', 'Movies_Family': 'directories/film_genres/family_films', 'Movies_Anime_animation': 'directories/film_genres/animation', 'Movies_Foreign': 'directories/film_genres/foreign_films', 'Movies_Documentary': 'directories/film_genres/documentaries', 'Movies_Shorts': 'directories/film_genres/short_film',
'Shortmov': 'directories/film_genres/short_film', 'Film': 'directories/film_genres/animation',
'Shows': 'directories/topics/tv', 'Comedy': 'directories/film_genres/comedy',
'Sports': 'directories/topics/sports',
Expand Down

0 comments on commit 48772c3

Please sign in to comment.