diff options
-rwxr-xr-x | scripts/send-error-report | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/send-error-report b/scripts/send-error-report index 48d983bc0e..c99d3876d7 100755 --- a/scripts/send-error-report +++ b/scripts/send-error-report @@ -20,7 +20,7 @@ def handle_connection(server, data): # we need to check that the server isn't a local one, as in no_proxy try: temp = httplib.HTTPConnection(server, strict=True, timeout=5) - temp.request("GET", "/") + temp.request("GET", "/Errors/") tempres = temp.getresponse() if tempres.status == 200: proxyrequired = False |