Explorar el Código

Fix new date format bug.

master
duncan.parkes hace 15 años
padre
commit
b1b5525e92
Se han modificado 1 ficheros con 5 adiciones y 6 borrados
  1. +5
    -6
      python_scrapers/Wychavon.py

+ 5
- 6
python_scrapers/Wychavon.py Ver fichero

@@ -65,13 +65,12 @@ RIPNAME=Root%2EPages%2EPgeDC%2EPgeListCases"
application.description = ""
else:
application.description = descrip.strip()
rec_m, rec_d, rec_y = trs[1].findAll("td")[3].font.string.strip().\
split("/")
date_format = "%d/%m/%y"
date_string = trs[1].findAll("td")[3].font.string.strip()
application.date_received = datetime.date(int(rec_y), int(rec_m), \
int(rec_d))
application.date_received = datetime.datetime.strptime(date_string, date_format)

apptype = trs[0].findAll("td")[3].font.string
# Avoids throwing an error if no apptype is given (this can happen)
if apptype != None:


Cargando…
Cancelar
Guardar