From e870fab277ee708159a24eaeefa28a815956ada4 Mon Sep 17 00:00:00 2001 From: Ruud Date: Sun, 23 Mar 2014 17:55:12 +0100 Subject: [PATCH] Scanner didn't use correct get key to determine movie --- couchpotato/core/plugins/scanner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/plugins/scanner.py b/couchpotato/core/plugins/scanner.py index 4d1cc7d..133ec45 100644 --- a/couchpotato/core/plugins/scanner.py +++ b/couchpotato/core/plugins/scanner.py @@ -597,7 +597,7 @@ class Scanner(Plugin): if imdb_id: try: db = get_db() - return db.get('media', imdb_id, with_doc = True)['doc'] + return db.get('media', 'imdb-%s' % imdb_id, with_doc = True)['doc'] except: log.debug('Movie "%s" not in library, just getting info', imdb_id) return {