diff --git a/python-sync-actions/src/http_generic/auth.py b/python-sync-actions/src/http_generic/auth.py index b05b749..d0efaa5 100644 --- a/python-sync-actions/src/http_generic/auth.py +++ b/python-sync-actions/src/http_generic/auth.py @@ -115,7 +115,7 @@ def __eq__(self, other): ]) def get_secrets(self): - return auth._basic_auth_str(self.username, self.password) + return [auth._basic_auth_str(self.username, self.password)] class BearerToken(AuthMethodBase, AuthBase):