keep lookup.modles and movie.models in sync
This commit is contained in:
parent
000d913da1
commit
85712a63b5
1 changed files with 5 additions and 0 deletions
|
@ -16,6 +16,8 @@ import ox.web.imdb
|
|||
import ox.web.wikipedia
|
||||
import ox.web.allmovie
|
||||
|
||||
import movie.models
|
||||
|
||||
from modules import get_info
|
||||
|
||||
oxdb_api = ox.API('http://0xdb.org/api/')
|
||||
|
@ -105,6 +107,9 @@ class MovieId(models.Model):
|
|||
#if not self.oxdb_id:
|
||||
# self.gen_oxdb_id()
|
||||
self.save()
|
||||
if self.imdb_id:
|
||||
m, created = movie.models.Imdb.objects.get_or_create(imdb=self.movie_id.imdb_id)
|
||||
m.update()
|
||||
|
||||
def gen_oxdb_id(self):
|
||||
self.oxdb_id = ox.get_oxid(
|
||||
|
|
Loading…
Reference in a new issue