Skip to content

Commit

Permalink
Adapt to new yarl API (#10527)
Browse files Browse the repository at this point in the history
  • Loading branch information
tinloaf authored and balloob committed Nov 11, 2017
1 parent 5e92fa3 commit 44506ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/tts/google.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def async_get_tts_audio(self, message, language, options=None):
url_param = {
'ie': 'UTF-8',
'tl': language,
'q': yarl.quote(part, strict=False),
'q': yarl.quote(part),
'tk': part_token,
'total': len(message_parts),
'idx': idx,
Expand Down

0 comments on commit 44506ce

Please sign in to comment.