diff --git a/README.md b/README.md
index b076744..581348e 100644
--- a/README.md
+++ b/README.md
@@ -47,7 +47,6 @@ This will tell you your
2. Region
3. Country
4. Latitude & Longitude.
-5. Your Internet Service Provider
This uses [Checkip](http://checkip.dyndns.com/) and [ipinfo.io](http://ipinfo.io/developers).
@@ -102,6 +101,10 @@ Blog Reader is the terminal reader that scrapes the article from [planet dgplug]
It seprates the content accrding to the screen size.
+```bash
+python Blog_reader.py
+```
+
### Find Large Files
Searches a file location and subdirectories for files larger than a given size.
@@ -226,6 +229,7 @@ The following people helped in creating the above content.
* Sharan Pai
* Madhav Bahl
* Ishank Arora
+* Vishal Sharma
### If you like the project give a star
diff --git a/bin/Blog_reader.py b/bin/Blog_reader.py
index a88f952..14577bf 100644
--- a/bin/Blog_reader.py
+++ b/bin/Blog_reader.py
@@ -9,9 +9,6 @@
for i in range(0, size):
piu = data[i]
heading = piu.find("a").get_text()
- for n in range(84):
- print ("-", end=" ")
- print ('{}{}'.format(' ' * (int(columns / 2 - len(heading) / 2)), heading))
for n in range(84):
print ("-", end=" ")
main_content = piu.find(class_="content").get_text()