Browse Source

Merge 44828e62a5 into 0176b0de36

pull/6023/merge
SytheZN 8 years ago
committed by GitHub
parent
commit
a8254b4eb1
  1. 2
      couchpotato/core/plugins/scanner.py

2
couchpotato/core/plugins/scanner.py

@ -919,7 +919,7 @@ class Scanner(Plugin):
guess = {} guess = {}
if file_name: if file_name:
try: try:
guessit = guess_movie_info(toUnicode(file_name)) guessit = guess_movie_info(toUnicode(file_name.replace('\\\\', 'C:\\')))
if guessit.get('title') and guessit.get('year'): if guessit.get('title') and guessit.get('year'):
guess = { guess = {
'name': guessit.get('title'), 'name': guessit.get('title'),

Loading…
Cancel
Save