From 48f7c67587f8df880ff93ac61a69cfa4b2c11702 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Wed, 20 Mar 2019 09:59:28 -0400 Subject: [PATCH] cefbuilds: Encode plus signs in filenames (see issue #2596) --- tools/cefbuilds/cef_html_builder.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/cefbuilds/cef_html_builder.py b/tools/cefbuilds/cef_html_builder.py index 19167019f..f529ce81d 100644 --- a/tools/cefbuilds/cef_html_builder.py +++ b/tools/cefbuilds/cef_html_builder.py @@ -171,11 +171,11 @@ class cef_html_builder: @staticmethod def _get_file_url(platform, cef_version, file): - return file['name'] + return file['name'].replace('+', '%2B') @staticmethod def _get_sha1_url(platform, cef_version, file): - return file['name'] + '.sha1' + return cef_html_builder._get_file_url(platform, cef_version, file) + '.sha1' @staticmethod def _get_tooltip_text(platform, cef_version, file):