diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2014-09-08 17:11:41 -0400 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2014-09-08 17:11:41 -0400 |
| commit | 9c72e7349676b719118e7f98dc0f7d142cc80ab4 (patch) | |
| tree | a8faaca53b037b70a0d1d731ccd7fc37eb5d659a /client/stt.py | |
| parent | 0b9d9a0c37d5540eb6a9b3e2f11fa4e87675bb7e (diff) | |
| download | jasper-client-9c72e7349676b719118e7f98dc0f7d142cc80ab4.tar.gz jasper-client-9c72e7349676b719118e7f98dc0f7d142cc80ab4.zip | |
PEP formatting fix
Diffstat (limited to 'client/stt.py')
| -rw-r--r-- | client/stt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/stt.py b/client/stt.py index b59b974..daa3fd3 100644 --- a/client/stt.py +++ b/client/stt.py @@ -119,7 +119,7 @@ class GoogleSTT(object): wav.close() try: - headers={ 'Content-type': 'audio/l16; rate=%s' % GoogleSTT.RATE} + headers = {'Content-type': 'audio/l16; rate=%s' % GoogleSTT.RATE} response = self.http.post(url, data=data, headers=headers) response.encoding = 'utf-8' response_read = response.text |
