Commit 2d820d2a authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

acronyms.pl: fix a derp (only added in generated .pm, not in generator script)

parent 98f1625a
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -1860,6 +1860,12 @@ sub get_station {
		return ($ds100_match);
	}

	my $eva_match = firstval { defined $_->[2] and $name eq $_->[2] } @stations;

	if ($eva_match) {
		return ($eva_match);
	}

	return get_station_by_name($name);
}

@@ -1890,7 +1896,6 @@ sub get_station_by_location {
	return @station_map;
}


sub get_station_by_name {
	my ($name) = @_;