diff --git a/appPublic/http_client.py b/appPublic/http_client.py index 0ff5fbc..357e0fc 100644 --- a/appPublic/http_client.py +++ b/appPublic/http_client.py @@ -88,7 +88,7 @@ class Http_Client: if status is None: return data if status == 'OK': - return data['data'] + return data.get('data') return data except: return resp.text