Pārlūkot izejas kodu

Title case for region names.

tags/v0.1^2
Ben Kurtovic pirms 12 gadiem
vecāks
revīzija
9bbc2b9e77
1 mainītis faili ar 3 papildinājumiem un 3 dzēšanām
  1. +3
    -3
      earwigbot/commands/geolocate.py

+ 3
- 3
earwigbot/commands/geolocate.py Parādīt failu

@@ -59,9 +59,9 @@ class Geolocate(Command):
res = json.loads(query)

try:
country = res["countryName"]
region = res["regionName"]
city = res["cityName"]
country = res["countryName"].title()
region = res["regionName"].title()
city = res["cityName"].title()
latitude = res["latitude"]
longitude = res["longitude"]
utcoffset = res["timeZone"]


Notiek ielāde…
Atcelt
Saglabāt