addressing file not found, remove unused dict

This commit is contained in:
CyberRoute 2024-02-14 21:38:59 +01:00
parent f09a6e2999
commit aff79f5d03
2 changed files with 2 additions and 3 deletions

View file

@ -1,5 +1,5 @@
[global]
mmdb_file = ../db/GeoOpen-Country.mmdb,../db/GeoOpen-Country-ASN.mmdb
country_file = ../db/country.json
mmdb_file = db/GeoOpen-Country.mmdb,db/GeoOpen-Country-ASN.mmdb
country_file = db/country.json
lookup_pubsub = no
port = 8000

View file

@ -101,7 +101,6 @@ class MyGeoLookup:
ret = []
ips = req.access_route
for mmdb in mmdbs:
m = {}
georesult = mmdb['reader'].get(ips[0])
m = mmdb.copy()
del m['reader']