Browse Source

Clean-up

pull/3131/head
mano3m 11 years ago
parent
commit
72383592ba
  1. 4
      couchpotato/core/media/movie/_base/static/movie.js
  2. 3
      couchpotato/core/plugins/renamer.py

4
couchpotato/core/media/movie/_base/static/movie.js

@ -250,9 +250,9 @@ var Movie = new Class({
getUnprefixedTitle: function(t){
if(t.substr(0, 4).toLowerCase() == 'the ')
t = t.substr(4) + ', The';
if(t.substr(0, 3).toLowerCase() == 'an ')
else if(t.substr(0, 3).toLowerCase() == 'an ')
t = t.substr(3) + ', An';
if(t.substr(0, 2).toLowerCase() == 'a ')
else if(t.substr(0, 2).toLowerCase() == 'a ')
t = t.substr(2) + ', A';
return t;
},

3
couchpotato/core/plugins/renamer.py

@ -292,7 +292,8 @@ class Renamer(Plugin):
name_the = movie_name
for prefix in ['the ', 'an ', 'a ']:
if prefix == movie_name[:len(prefix)].lower():
name_the = movie_name[len(prefix):] + ', ' + prefix.strip().capitalize()
name_the = movie_name[len(prefix):] + ', ' + prefix.strip().capitalize()
break
replacements = {
'ext': 'mkv',

Loading…
Cancel
Save