From 26460d817573bb860a542f26b96bc02b0e2082d8 Mon Sep 17 00:00:00 2001 From: Lei Zhang Date: Mon, 18 Jul 2022 22:06:59 +0000 Subject: [PATCH] Fix typos in PDFium fetch config. - The extra comma at the end of the url string unintentionally turns the url into a list. - The project name should be "pdfium". Change-Id: I8944d59d06751716c512030145d29aac10cf13fd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/3770290 Reviewed-by: Aravind Vasudevan Commit-Queue: Lei Zhang --- fetch_configs/pdfium.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fetch_configs/pdfium.py b/fetch_configs/pdfium.py index 0b4bb2868..78635e805 100644 --- a/fetch_configs/pdfium.py +++ b/fetch_configs/pdfium.py @@ -14,9 +14,9 @@ class PdfiumConfig(config_util.Config): @staticmethod def fetch_spec(props): - url = 'https://pdfium.googlesource.com/pdfium.git', + url = 'https://pdfium.googlesource.com/pdfium.git' solution = { - 'name': 'src', + 'name': 'pdfium', 'url': url, 'managed': False, 'custom_vars': {},