Merge "Fix the "serialize" method of the client in python3"

This commit is contained in:
Zuul 2019-02-05 14:58:21 +00:00 committed by Gerrit Code Review
commit f3950a6bba
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ class RatingClient(rest_client.RestClient):
@staticmethod
def deserialize(body):
return json.loads(body.replace("\n", ""))
return json.loads(body.decode().replace("\n", ""))
@staticmethod
def serialize(body):