Skip to content

Commit

Permalink
Don't mark Washington, ME as being in WA
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Jan 20, 2024
1 parent cded2d3 commit 600a17f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion createdatabase.PL
Original file line number Diff line number Diff line change
Expand Up @@ -2203,7 +2203,7 @@ print __LINE__, ": is_in = $is_in, name = $name, place = $place\n";
$county = $1;
$is_in = $2;
}
if($is_in =~ /^(.+?), (.+)/) {
if((!defined($state)) && ($is_in =~ /^(.+?), (.+)/)) {
if(my $code = $us->{state2code}{uc($1)}) {
$state = $code;
$is_in = $2;
Expand Down

0 comments on commit 600a17f

Please sign in to comment.