Skip to content
This repository has been archived by the owner on Nov 16, 2024. It is now read-only.

Error en nombres de provincias. Issue 110 #117

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions bormeparser/provincia.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,12 @@ def from_title(title):
try:
if title == 'ARABA/ÁLAVA':
return PROVINCIA.ALAVA
elif title == 'ALICANTE/ALACANT':
return PROVINCIA.ALICANTE
elif title == 'CASTELLÓN/CASTELLÓ':
return PROVINCIA.CASTELLON
elif title == 'VALENCIA/VALÈNCIA':
return PROVINCIA.VALENCIA
title = remove_accents(title).replace(' ', '_')
return getattr(PROVINCIA, title)
except AttributeError:
Expand Down