From: Michael Tremer Date: Wed, 30 Nov 2016 10:16:35 +0000 (+0100) Subject: http: Fix wrong baseurl variable assignment X-Git-Tag: 0.9.28~1285^2~1460 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6014f49222c20fc094494c020180d8b10f099f73;p=pakfire.git http: Fix wrong baseurl variable assignment Signed-off-by: Michael Tremer --- diff --git a/src/pakfire/http.py b/src/pakfire/http.py index 3e4bd2bb9..5b80f79c7 100644 --- a/src/pakfire/http.py +++ b/src/pakfire/http.py @@ -38,7 +38,7 @@ class Client(object): repository data, packages and communicate with the Pakfire Hub. """ def __init__(self, baseurl=None): - self.baseurl = None + self.baseurl = baseurl # Stores any proxy configuration self.proxies = {}