removed cast of str to str

pull/700/head
Nick 2021-02-17 12:09:01 -05:00
parent 694c4b72ee
commit f5a9d5924d
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()