diff options
-rw-r--r-- | pym/portage/getbinpkg.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pym/portage/getbinpkg.py b/pym/portage/getbinpkg.py index 752a0fb4c..8225a8242 100644 --- a/pym/portage/getbinpkg.py +++ b/pym/portage/getbinpkg.py @@ -298,6 +298,10 @@ def dir_get_list(baseurl,conn=None): listing = None if protocol in ["http","https"]: + if not address.endswith("/"): + # http servers can return a 400 error here + # if the address doesn't end with a slash. + address += "/" page,rc,msg = make_http_request(conn,address,params,headers) if page: |