소스 검색

Fix again.

pull/15/head
Ben Kurtovic 9 년 전
부모
커밋
d2452a18e9
1개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. +4
    -3
      commands/weather.py

+ 4
- 3
commands/weather.py 파일 보기

@@ -95,7 +95,7 @@ class Weather(Command):
desc = "An unknown error occurred."
self.reply(data, desc)
elif "current_observation" in res:
msg = self.format_weather(res["current_observation"])
msg = self.format_weather(res)
self.reply(data, msg)
elif "results" in res["response"]:
msg = self.format_ambiguous_result(res)
@@ -103,11 +103,12 @@ class Weather(Command):
else:
self.reply(data, "An unknown error occurred.")

def format_weather(self, data):
def format_weather(self, res):
"""Format the weather (as dict *data*) to be sent through IRC."""
data = res["current_observation"]
place = data["display_location"]["full"]
icon = self.get_icon(data["icon"], data["local_time_rfc822"],
data["sun_phase"])
res["sun_phase"])
weather = data["weather"]
temp_f, temp_c = data["temp_f"], data["temp_c"]
humidity = data["relative_humidity"]


불러오는 중...
취소
저장