소스 검색

bug fix

solr_update
Simon Bowie 2 년 전
부모
커밋
f176721e8d
1개의 변경된 파일7개의 추가작업 그리고 6개의 파일을 삭제
  1. +7
    -6
      web/app/solr.py

+ 7
- 6
web/app/solr.py 파일 보기

@@ -156,15 +156,16 @@ def parse_result(id, input):

# search for the country in the content element and display it
country_code = re.search('FT=D[^\s]*\s(\w{2})', input)
country = pycountry.countries.get(alpha_2=country_code.group(1))
if country is not None:
output['country'] = country
else:
country = pycountry.historic_countries.get(alpha_2=country_code.group(1))
if country_code is not None:
country = pycountry.countries.get(alpha_2=country_code.group(1))
if country is not None:
output['country'] = country
else:
output['country'] = country_code.group(1)
country = pycountry.historic_countries.get(alpha_2=country_code.group(1))
if country is not None:
output['country'] = country
else:
output['country'] = country_code.group(1)

output['raw'] = input


Loading…
취소
저장