From 4eea438b73a442937f315d1dc80a6d4cc038cb77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Sun, 20 Oct 2019 20:55:59 +0200 Subject: [PATCH] Update updateWandbox script to account for the new Wandbox API response --- scripts/updateWandbox.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/updateWandbox.py b/scripts/updateWandbox.py index 564f9489..b448713d 100644 --- a/scripts/updateWandbox.py +++ b/scripts/updateWandbox.py @@ -41,7 +41,7 @@ def uploadFiles(): 'save': True }) - if 'status' in response and 'compiler_error' not in response: + if 'url' in response and 'compiler_error' not in response: return True, response['url'] else: return False, response