From 86ba22a55f399f1133048e684c6ebc4145fe1e01 Mon Sep 17 00:00:00 2001 From: Takashi Matsuo Date: Thu, 30 Jul 2020 22:33:46 -0700 Subject: [PATCH] chore: fix synth.py for sphinx (#74) * fix: fix synth.py for sphinx * also fix the regexp for the target files --- synth.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/synth.py b/synth.py index a6f6ba14..d75fe43c 100644 --- a/synth.py +++ b/synth.py @@ -32,8 +32,8 @@ # Sphinx interprets `*` as emphasis s.replace( - ["google/cloud/**/*_client.py", "google/cloud/**/cloud_tts.py"], - "((en)|(no)|(nb)(cmn)|(yue))-\*", + ["google/cloud/**/*client.py", "google/cloud/**/cloud_tts.py"], + "((en)|(no)|(nb)|(cmn)|(yue))-\*", "\g<1>-\*", )