diff --git a/examples/proofpoint_tap.py b/examples/proofpoint_tap.py index b5a0fce..532a761 100644 --- a/examples/proofpoint_tap.py +++ b/examples/proofpoint_tap.py @@ -22,7 +22,7 @@ headers = { } responseSiem = requests.request("GET", urlSiem, headers=headers, params=queryString) -if 'Credentials authentication failed' in str(responseSiem.text): +if 'Credentials authentication failed' in responseSiem.text: print("Credentials invalid, please edit keys.py and try again") quit()