Skip to content

Commit

Permalink
ExtraTorrent: remove episodes content_type
Browse files Browse the repository at this point in the history
  • Loading branch information
steeve committed Feb 20, 2014
1 parent e24fee8 commit 59c4666
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions resources/site-packages/xbmctorrent/scrapers/extratorrent.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,14 @@
def extratorrent_index():
cats = [
{"label": "Search Movies", "path": plugin.url_for("extratorrent_search", cid="4", content_type="movies")},
{"label": "Search TV Episodes", "path": plugin.url_for("extratorrent_search", cid="8", content_type="episodes")},
{"label": "Search Anime", "path": plugin.url_for("extratorrent_search", cid="1", content_type="episodes")},
{"label": "Search TV Episodes", "path": plugin.url_for("extratorrent_search", cid="8")},
{"label": "Search Anime", "path": plugin.url_for("extratorrent_search", cid="1")},
{"label": "Popular Movies", "path": plugin.url_for("extratorrent_page", type_="popular", cid="4", content_type="movies")},
{"label": "Popular TV Episodes", "path": plugin.url_for("extratorrent_page", type_="popular", cid="8", content_type="episodes")},
{"label": "Popular Anime", "path": plugin.url_for("extratorrent_page", type_="popular", cid="1", content_type="episodes")},
{"label": "Popular TV Episodes", "path": plugin.url_for("extratorrent_page", type_="popular", cid="8")},
{"label": "Popular Anime", "path": plugin.url_for("extratorrent_page", type_="popular", cid="1")},
{"label": "Last Movies", "path": plugin.url_for("extratorrent_page", type_="last", cid="4", content_type="movies")},
{"label": "Last TV Episodes", "path": plugin.url_for("extratorrent_page", type_="last", cid="8", content_type="episodes")},
{"label": "Last Anime", "path": plugin.url_for("extratorrent_page", type_="last", cid="1", content_type="episodes")},
{"label": "Last TV Episodes", "path": plugin.url_for("extratorrent_page", type_="last", cid="8")},
{"label": "Last Anime", "path": plugin.url_for("extratorrent_page", type_="last", cid="1")},
]
return cats

Expand Down

0 comments on commit 59c4666

Please sign in to comment.