Browse Source

Fix the variable passed to the getImdb method

pull/2133/head
Mythin 12 years ago
parent
commit
94647bbb57
  1. 2
      couchpotato/core/plugins/scanner/main.py

2
couchpotato/core/plugins/scanner/main.py

@ -565,7 +565,7 @@ class Scanner(Plugin):
if not imdb_id:
try:
for nf in files['nfo']:
imdb_id = getImdb(nfo_file)
imdb_id = getImdb(nf)
if imdb_id:
log.debug('Found movie via nfo file: %s', nf)
nfo_file = nf

Loading…
Cancel
Save