Преглед изворни кода

Title case for region names.

tags/v0.1^2
Ben Kurtovic пре 12 година
родитељ
комит
9bbc2b9e77
1 измењених фајлова са 3 додато и 3 уклоњено
  1. +3
    -3
      earwigbot/commands/geolocate.py

+ 3
- 3
earwigbot/commands/geolocate.py Прегледај датотеку

@@ -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"]


Loading…
Откажи
Сачувај