diff options
author | Mark Longair <mark@mysociety.org> | 2012-09-20 10:59:35 +0000 |
---|---|---|
committer | Mark Longair <mark@mysociety.org> | 2012-09-20 11:02:00 +0000 |
commit | ae60420e9a52c568e9af60e8c54196f4c91ad673 (patch) | |
tree | f4171e4e548cb453afe871d97674ac33c0ec0bb2 /perllib/FixMyStreet/Geocode/OSM.pm | |
parent | 2314e29a27ce4c1bc1288d745ad53756c152a68a (diff) |
Add a missing "use" statement, required for in_gb_locale
Diffstat (limited to 'perllib/FixMyStreet/Geocode/OSM.pm')
-rw-r--r-- | perllib/FixMyStreet/Geocode/OSM.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/Geocode/OSM.pm b/perllib/FixMyStreet/Geocode/OSM.pm index 197b2b1e7..78db7fe44 100644 --- a/perllib/FixMyStreet/Geocode/OSM.pm +++ b/perllib/FixMyStreet/Geocode/OSM.pm @@ -18,6 +18,7 @@ use File::Path (); use LWP::Simple qw($ua); use Memcached; use XML::Simple; +use mySociety::Locale; my $osmapibase = "http://www.openstreetmap.org/api/"; my $nominatimbase = "http://nominatim.openstreetmap.org/"; |