Browse Source

Fixed Typo

pull/5628/head
smitetierlist 10 years ago
parent
commit
c3d9bcf5ba
  1. 2
      couchpotato/core/plugins/quality/main.py
  2. 4
      couchpotato/core/plugins/renamer.py

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

@ -298,7 +298,7 @@ class QualityPlugin(Plugin):
# Don't score twice on same tag # Don't score twice on same tag
scored_on.append(ss(alt).lower()) scored_on.append(ss(alt).lower())
# Check extention # Check extension
for ext in quality.get('ext', []): for ext in quality.get('ext', []):
if ext == extension: if ext == extension:
log.debug('Found %s with .%s extension in %s', (quality['identifier'], ext, cur_file)) log.debug('Found %s with .%s extension in %s', (quality['identifier'], ext, cur_file))

4
couchpotato/core/plugins/renamer.py

@ -1284,7 +1284,7 @@ rename_options = {
'pre': '<', 'pre': '<',
'post': '>', 'post': '>',
'choices': { 'choices': {
'ext': 'Extention (mkv)', 'ext': 'Extension (mkv)',
'namethe': 'Moviename, The', 'namethe': 'Moviename, The',
'thename': 'The Moviename', 'thename': 'The Moviename',
'year': 'Year (2011)', 'year': 'Year (2011)',
@ -1470,7 +1470,7 @@ config = [{
'tab': 'renamer', 'tab': 'renamer',
'name': 'meta_renamer', 'name': 'meta_renamer',
'label': 'Advanced renaming', 'label': 'Advanced renaming',
'description': 'Meta data file renaming. Use &lt;filename&gt; to use the above "File naming" settings, without the file extention.', 'description': 'Meta data file renaming. Use &lt;filename&gt; to use the above "File naming" settings, without the file extension.',
'advanced': True, 'advanced': True,
'options': [ 'options': [
{ {

Loading…
Cancel
Save