From 82d539205ba1867a49ffd225048e1e2b185e6cea Mon Sep 17 00:00:00 2001
From: Alex Reisner <alex@alexreisner.com>
Date: Fri, 21 Dec 2012 16:39:42 -0500
Subject: [PATCH] Fix variable name typo.

---
 lib/geocoder/lookups/maxmind.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/geocoder/lookups/maxmind.rb b/lib/geocoder/lookups/maxmind.rb
index 537af711..e641278d 100644
--- a/lib/geocoder/lookups/maxmind.rb
+++ b/lib/geocoder/lookups/maxmind.rb
@@ -32,7 +32,7 @@ module Geocoder::Lookup
       if raw_data.respond_to?(:force_encoding)
         raw_data = raw_data.force_encoding("ISO-8859-1").encode("UTF-8")
       end
-      CSV.parse_line encoded
+      CSV.parse_line raw_data
     end
 
     def reserved_result
-- 
GitLab