Merge pull request #959 from aledovsky/bug/weather_segment_fix

Fix weather segment display
This commit is contained in:
Nikolai Aleksandrovich Pavlov 2014-08-06 02:16:49 +04:00
commit 39d1f4e1d6
1 changed files with 1 additions and 1 deletions

View File

@ -371,7 +371,7 @@ class WeatherSegment(ThreadedSegment):
location_data['country_code']])
query_data = {
'q':
'use "http://github.com/yql/yql-tables/raw/master/weather/weather.bylocation.xml" as we;'
'use "https://raw.githubusercontent.com/yql/yql-tables/master/weather/weather.bylocation.xml" as we;'
'select * from we where location="{0}" and unit="c"'.format(self.location).encode('utf-8'),
'format': 'json',
}