diff --git a/server/apps/vod/vodclient.py b/server/apps/vod/vodclient.py index f630a80..753796a 100644 --- a/server/apps/vod/vodclient.py +++ b/server/apps/vod/vodclient.py @@ -70,4 +70,4 @@ def getSignature(procedure=None): Sha1 = Hmac.digest() Signature = bytes(Sha1) + bytes(Original, 'utf-8') Signature2 = base64.b64encode(Signature) - return str(Signature2) + return str(Signature2, 'UTF-8')