From 1683bf203563fde25629047c7331e8d2f77af3be Mon Sep 17 00:00:00 2001 From: bytedream Date: Tue, 1 Feb 2022 22:06:44 +0100 Subject: [PATCH] Fixed readme build --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index 09e982f..9ae460e 100644 --- a/build.py +++ b/build.py @@ -67,7 +67,7 @@ def write_readme(): # adds all available websites all_providers_regex = r'(?<=)' domains = filter(lambda domain: domain != '', open('SUPPORTED', 'r').read().split('\n')) - all_providers = '\n'.join(f'\t\t
  • {supported}
  • ' for supported in domains) + all_providers = '\n'.join(f'\t\t
  • {supported}
  • ' for supported in domains) + '\n' readme = re.sub(all_providers_regex, all_providers, readme, flags=re.DOTALL) # adds all installed browsers to the tested browser section. i'm just to lazy to seek out all browser versions manually