We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 632a122 commit 76ac67fCopy full SHA for 76ac67f
1 file changed
openshift/client/api_client.py
@@ -11,7 +11,7 @@
11
class ApiClient(K8sApiClient):
12
def _ApiClient__deserialize(self, data, klass):
13
if klass == 'RuntimeRawExtension':
14
- data = {'Raw': b64encode(json.dumps(data).encode())}
+ data = {'Raw': b64encode(json.dumps(data).encode()).decode()}
15
try:
16
return super(ApiClient, self).__deserialize(data, klass)
17
except AttributeError:
0 commit comments