Advertisement
tubedogg

Crash with trakt_lookup

Mar 20th, 2017
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.60 KB | None | 0 0
  1. 2017-03-20 15:04 DEBUG utils.requests rss_test_tv_missing Fetching URL https://api.trakt.tv/users/me/lists/missing-episodes/items with args () and kwargs {'allow_redirects': True, u'timeout': 30}
  2. 2017-03-20 15:04 DEBUG api_trakt rss_test_tv_missing Type of title: <type 'unicode'>
  3. 2017-03-20 15:04 DEBUG api_trakt rss_test_tv_missing Searching with params: query=Secrets Of The National Trust, type=show, year=None
  4. 2017-03-20 15:04 DEBUG utils.requests rss_test_tv_missing Fetching URL https://api.trakt.tv/search with args () and kwargs {'allow_redirects': True, 'params': {u'query': u'Secrets Of The National Trust', u'type': u'show', u'year': None}, u'timeout': 30}
  5. 2017-03-20 15:04 DEBUG utils.requests rss_test_tv_missing Fetching URL https://api.trakt.tv/shows/116448 with args () and kwargs {'allow_redirects': True, 'params': {u'extended': u'full'}, u'timeout': 30}
  6. 2017-03-20 15:04 CRITICAL task rss_test_tv_missing BUG: Unhandled error in plugin list_match: u'tmdb_id'
  7. 2017-03-20 15:04 CRITICAL manager rss_test_tv_missing An unexpected crash has occurred. Writing crash report to /path/to/flexget/crash_report.2017.03.20.150454821971.log. Please verify you are running the latest version of flexget by using "flexget -V" from CLI or by using version_checker plugin at http://flexget.com/wiki/Plugins/version_checker. You are currently using version 2.10.14
  8. 2017-03-20 15:04 DEBUG manager rss_test_tv_missing Traceback:
  9. Traceback (most recent call last):
  10. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/flexget/task.py", line 483, in __run_plugin
  11. return method(*args, **kwargs)
  12. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/flexget/event.py", line 23, in __call__
  13. return self.func(*args, **kwargs)
  14. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/flexget/plugins/filter/list_match.py", line 41, in on_task_filter
  15. result = thelist.get(entry)
  16. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/flexget/plugins/list/trakt_list.py", line 156, in get
  17. return self._find_entry(entry)
  18. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/flexget/plugins/list/trakt_list.py", line 137, in _find_entry
  19. if self.config['type'] in ['episodes', 'auto'] and self.episode_match(entry, item):
  20. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/flexget/plugins/list/trakt_list.py", line 250, in episode_match
  21. return (self.season_match(entry1, entry2) and entry1.get('series_episode') is not None and
  22. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/flexget/plugins/list/trakt_list.py", line 246, in season_match
  23. return (self.show_match(entry1, entry2) and entry1.get('series_season') is not None and
  24. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/flexget/plugins/list/trakt_list.py", line 241, in show_match
  25. ['series_name', 'trakt_show_id', 'tmdb_id', 'tvdb_id', 'imdb_id', 'tvrage_id']):
  26. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/flexget/plugins/list/trakt_list.py", line 240, in <genexpr>
  27. if any(entry1.get(id) is not None and entry1[id] == entry2[id] for id in
  28. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/flexget/utils/lazy_dict.py", line 71, in __getitem__
  29. item = self.store[key]
  30. KeyError: u'tmdb_id'
  31. 2017-03-20 15:04 WARNING task rss_test_tv_missing Aborting task (plugin: list_match)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement