Browse Source

Add TAB detection to the original OU keywords.

Also fixes bug that had Full OU searching for ('h','ou') instead of
('f','ou')
pull/7168/head
jwvanderbeck 8 years ago
parent
commit
18a4f0a261
  1. 6
      couchpotato/core/plugins/scanner.py

6
couchpotato/core/plugins/scanner.py

@ -42,9 +42,9 @@ class Scanner(Plugin):
'Half SBS': [('half', 'sbs'), ('h', 'sbs'), 'hsbs'],
'Full SBS': [('full', 'sbs'), ('f', 'sbs'), 'fsbs'],
'SBS': ['sbs'],
'Half OU': [('half', 'ou'), ('h', 'ou'), 'hou'],
'Full OU': [('full', 'ou'), ('h', 'ou'), 'fou'],
'OU': ['ou'],
'Half OU': [('half', 'ou'), ('h', 'ou'), ('half', 'tab'), ('h', 'tab'), 'htab', 'hou'],
'Full OU': [('full', 'ou'), ('f', 'ou'), ('full', 'tab'), ('f', 'tab'), 'ftab', 'fou'],
'OU': ['ou', 'tab'],
'Frame Packed': ['mvc', ('complete', 'bluray')],
'3D': ['3d']
}

Loading…
Cancel
Save