From 7d80ca3a09cc451d13ed5e34556c14fb7a980d0b Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Fri, 30 Dec 2016 14:11:43 +0100 Subject: [PATCH] http: Fix wrong function call The function was renamed to make clearer what it actually does Signed-off-by: Michael Tremer --- src/pakfire/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pakfire/http.py b/src/pakfire/http.py index 5dace8e92..b99c09adf 100644 --- a/src/pakfire/http.py +++ b/src/pakfire/http.py @@ -275,7 +275,7 @@ class Client(object): tries -= 1 try: - return self._request(url, **kwargs) + return self._one_request(url, **kwargs) # Bad Gateway Error except BadGatewayError as e: -- 2.39.5