diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2014-05-10 16:44:55 -0400 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2014-05-10 16:44:55 -0400 |
| commit | b4dffa756e1a5d78bc969f516be97e37a9c43c19 (patch) | |
| tree | eb468c45c424d487db11c446e818eaf3ba02d603 /client/modules/Weather.py | |
| parent | ee143e9e78be4f0b709128d5fddc5f2604e1de38 (diff) | |
| download | jasper-client-b4dffa756e1a5d78bc969f516be97e37a9c43c19.tar.gz jasper-client-b4dffa756e1a5d78bc969f516be97e37a9c43c19.zip | |
Semantic version update + reflect change in Weather module, better output formatting in populate
Diffstat (limited to 'client/modules/Weather.py')
| -rw-r--r-- | client/modules/Weather.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/modules/Weather.py b/client/modules/Weather.py index 82b9fb7..ad1ac29 100644 --- a/client/modules/Weather.py +++ b/client/modules/Weather.py @@ -56,7 +56,7 @@ def handle(text, mic, profile): tz = getTimezone(profile) service = DateService(tz=tz) - date = service.extractDates(text) + date = service.extractDay(text) if not date: date = datetime.datetime.now(tz=tz) weekday = service.__daysOfWeek__[date.weekday()] |
