diff --git a/xp.py b/xp.py index 949b0d4..5dcc55e 100644 --- a/xp.py +++ b/xp.py @@ -95,7 +95,7 @@ def verify_upload(): try: r = requests.get(triggerurl, verify=False, timeout=10) # kinda brittle from experience prob just remove the latter - if r.status_code == 200 and "ok" in r.text: + if r.status_code == 200 # and "ok" in r.text: print("+ trigger fired, shelling...") else: print(f"+ trigger returned {r.status_code}")