瀏覽代碼

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…
取消
儲存