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