Skip to content

Commit

Permalink
Update dob
Browse files Browse the repository at this point in the history
  • Loading branch information
noelmas committed Mar 29, 2019
1 parent 45df8c7 commit 1457473
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions process_disqualified_directors_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ def process_header_row(row):

def process_person_row(row, output_writer):
record_type = row[0]
person_number = str(row[1:12])
person_dob = row[13:24]
person_postcode = row[13:20]
person_number = str(row[1:13])
person_dob = row[13:21]
person_postcode = row[21:29]
person_variable_ind = int(row[29:33])
person_details = row[33:33 + person_variable_ind]
person_details = person_details.split('<')
Expand Down

0 comments on commit 1457473

Please sign in to comment.