From bc1a5c5e99b0598371235880f50b914ebcd80a01 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sun, 2 Jan 2011 14:16:11 +0100 Subject: [PATCH] fireinfo: Fix geo location table. --- www/webapp/backend/stasy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/webapp/backend/stasy.py b/www/webapp/backend/stasy.py index 7c01753e..a9ce4dd2 100644 --- a/www/webapp/backend/stasy.py +++ b/www/webapp/backend/stasy.py @@ -594,7 +594,7 @@ class Stasy(object): for geo_location in self.geo_locations: geo_locations[geo_location] = \ self.query({ - "geoip.country_code" : geo_location + "geoip.country_code" : geo_location.upper() }).count() count += geo_locations[geo_location] -- 2.47.3