Removed debug code, switched to fancy new string formatting.
This commit is contained in:
parent
1fa16fe587
commit
5fce23b522
1 changed files with 1 additions and 2 deletions
|
@ -20,7 +20,6 @@ def geoip(inp):
|
||||||
except:
|
except:
|
||||||
return "Sorry, I can't locate that in my database."
|
return "Sorry, I can't locate that in my database."
|
||||||
|
|
||||||
print record
|
|
||||||
data = {}
|
data = {}
|
||||||
|
|
||||||
if "region_name" in record:
|
if "region_name" in record:
|
||||||
|
@ -36,4 +35,4 @@ def geoip(inp):
|
||||||
data["cc"] = record["country_code"] or "N/A"
|
data["cc"] = record["country_code"] or "N/A"
|
||||||
data["country"] = record["country_name"] or "Unknown"
|
data["country"] = record["country_name"] or "Unknown"
|
||||||
data["city"] = record["city"] or "Unknown"
|
data["city"] = record["city"] or "Unknown"
|
||||||
return "\x02Country:\x02 %(country)s (%(cc)s), \x02City:\x02 %(city)s%(region)s" % data
|
return "\x02Country:\x02 {country} ({cc}), \x02City:\x02 {city}{region}".format(**data)
|
||||||
|
|
Reference in a new issue