소스 검색

Fix new date format bug.

master
duncan.parkes 15 년 전
부모
커밋
b1b5525e92
1개의 변경된 파일5개의 추가작업 그리고 6개의 파일을 삭제
  1. +5
    -6
      python_scrapers/Wychavon.py

+ 5
- 6
python_scrapers/Wychavon.py 파일 보기

@@ -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:


불러오는 중...
취소
저장