stripAccents
This commit is contained in:
parent
a8f150272e
commit
d780e12a80
1 changed files with 3 additions and 2 deletions
|
@ -8,7 +8,7 @@ from django.db.models import Q, Max
|
||||||
from django.contrib.auth.models import User
|
from django.contrib.auth.models import User
|
||||||
|
|
||||||
import ox
|
import ox
|
||||||
from ox.normalize import canonicalName, normalizePath
|
from ox.normalize import canonicalName, normalizePath, stripAccents
|
||||||
from ox import stripTags
|
from ox import stripTags
|
||||||
import ox.web.imdb
|
import ox.web.imdb
|
||||||
import ox.web.wikipedia
|
import ox.web.wikipedia
|
||||||
|
@ -121,7 +121,8 @@ class MovieId(models.Model):
|
||||||
title = self.title
|
title = self.title
|
||||||
if self.year:
|
if self.year:
|
||||||
title += ' (%s)' % self.year
|
title += ' (%s)' % self.year
|
||||||
return os.path.join(directors[0].upper(), normalizePath(directors), normalizePath(title))
|
folder = stripAccents(directors[0].upper())[0]
|
||||||
|
return os.path.join(folder, normalizePath(directors), normalizePath(title))
|
||||||
|
|
||||||
def json(self):
|
def json(self):
|
||||||
json = {}
|
json = {}
|
||||||
|
|
Loading…
Reference in a new issue