summaryrefslogtreecommitdiff
path: root/client/modules
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2014-05-10 16:44:55 -0400
committerschneefux <schneefux+commit@schneefux.xyz>2014-05-10 16:44:55 -0400
commitb4dffa756e1a5d78bc969f516be97e37a9c43c19 (patch)
treeeb468c45c424d487db11c446e818eaf3ba02d603 /client/modules
parentee143e9e78be4f0b709128d5fddc5f2604e1de38 (diff)
downloadjasper-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')
-rw-r--r--client/modules/Weather.py2
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()]