diff --git a/hack/checkout_account.py b/hack/checkout_account.py index 44e92a8b12..cf215b3fd1 100755 --- a/hack/checkout_account.py +++ b/hack/checkout_account.py @@ -40,7 +40,7 @@ ) resp = conn.getresponse() if resp.status != 200: - sys.exit("Got invalid response %d" % resp.status) + sys.exit("Got invalid response %d: %s" % (resp.status, resp.reason)) body = json.load(resp) conn.close()