diff --git a/README.md b/README.md
index 11e9072..5befceb 100644
--- a/README.md
+++ b/README.md
@@ -27,9 +27,7 @@ Supported streaming providers (for a complete list of all supported websites, se
vivo.st
vivo.sx
voe.sx
- vupload.com
-
-
+ vupload.com
---
diff --git a/build.py b/build.py
index 4deff10..2a1e513 100644
--- a/build.py
+++ b/build.py
@@ -69,7 +69,8 @@ def write_readme():
# adds all available websites
all_providers_regex = r'(?<=)'
- all_providers = '\n'.join(f'\t\t{provider}' for provider in open('SUPPORTED', 'r').read().split('\n')) + '\n\t'
+ domains = filter(lambda domain: domain != '', open('SUPPORTED', 'r').read().split('\n'))
+ all_providers = '\n'.join(f'\t\t{supported}' for supported in domains)
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