removed cast of str to str

pull/749/head
Nick 2021-02-17 12:09:01 -05:00 committed by Raphaël Vinot
parent 25e44e7d8d
commit ffd4677c99
1 changed files with 1 additions and 1 deletions

View File

@ -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()