places too

This commit is contained in:
j 2012-03-09 23:53:52 +01:00
parent 4969719231
commit 2ae9035a37
2 changed files with 5 additions and 5 deletions

View File

@ -25,9 +25,9 @@ def update_matching_events(id):
names = {}
for n in Event.objects.all().values('id', 'name', 'alternativeNames'):
names[n['id']] = [ox.decodeHtml(n) for n in [n['name']] + json.loads(n['alternativeNames'])]
names[n['id']] = [ox.decodeHtml(x) for x in [n['name']] + json.loads(n['alternativeNames'])]
value = a.findvalue.lower().replace('\n', ' ')
value = a.findvalue.lower()
update = []
for i in names:
for name in names[i]:
@ -54,8 +54,8 @@ def update_matching_places(id):
names = {}
for n in Place.objects.all().values('id', 'name', 'alternativeNames'):
names[n['id']] = [n['name']] + json.loads(n['alternativeNames'])
value = a.value.lower()
names[n['id']] = [ox.decodeHtml(x) for x in [n['name']] + json.loads(n['alternativeNames'])]
value = a.findvalue.lower()
update = []
for i in names:
for name in names[i]: