diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2014-10-03 16:10:52 -0400 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2014-10-03 16:10:52 -0400 |
| commit | 99373bc4772575f6d3a160a5bce852aa08226bfc (patch) | |
| tree | 83812a7ee68bc0f1e85967857578f9e9b06befb4 /client/modules | |
| parent | c263709078c096faef891502e06cc9e9ade65777 (diff) | |
| parent | a33f9f5c6e70dbf8b93ce2ba8a2a1c9f1de2dc4d (diff) | |
| download | jasper-client-99373bc4772575f6d3a160a5bce852aa08226bfc.tar.gz jasper-client-99373bc4772575f6d3a160a5bce852aa08226bfc.zip | |
Merge pull request #211 from k-pom/typo_in_gmail_module
Fixed a typo in the case of multiple emails from a single sender
Diffstat (limited to 'client/modules')
| -rw-r--r-- | client/modules/Gmail.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/modules/Gmail.py b/client/modules/Gmail.py index dfb6854..001cf9c 100644 --- a/client/modules/Gmail.py +++ b/client/modules/Gmail.py @@ -122,7 +122,7 @@ def handle(text, mic, profile): response += ". Senders include: " response += '...'.join(senders) else: - response += " from " + unittest[0] + response += " from " + unique_senders[0] mic.say(response) |
