blurp: convert signature key to string (#14987)

This commit is contained in:
Serghei Mihai 2017-02-13 18:09:29 +01:00
parent fbd306c23d
commit bfbe8a5803
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ class Data(object):
self.async = source.get('async', False)
self.timeout = source.get('timeout', 10)
self.auth_mech = source.get('auth_mech')
self.signature_key = source.get('signature_key')
self.signature_key = source.get('signature_key').encode('ascii')
self.parser_type = source.get('parser_type', 'raw')
self.content_type = source.get('content_type', self.MAPPING[self.parser_type])
self.user_context = source.get('user_context',