Skip to content

Commit e071bf1

Browse files
author
Alex Schworer
committed
Actually comply with HTTP spec for the Accept Header
1 parent d74d9fc commit e071bf1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zencoder/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def headers(self):
6464

6565
headers = {
6666
'Content-Type': 'application/{0}'.format(content_type),
67-
'Accepts': 'application/{0}'.format(content_type),
67+
'Accept': 'application/{0}'.format(content_type),
6868
'Zencoder-Api-Key': self.api_key,
6969
'User-Agent': 'zencoder-py v{0}'.format(LIB_VERSION)
7070
}

0 commit comments

Comments
 (0)