Skip to content

Commit f94648f

Browse files
committed
Fixed CONTRIBUTORS.md for consistency and the remarks from the pull request
1 parent 384bcd8 commit f94648f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fetch_contributors.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
CONTRIBUTORS.append((contributor['login'], contributor['html_url']))
2727

2828
#write to the file contributors.md
29-
FILE = open(os.path.join(os.path.dirname(__file__), 'contributors.md'), "w")
29+
FILE = open(os.path.join(os.path.dirname(__file__), 'CONTRIBUTORS.md'), "w")
3030
FILE.write("""## Check your hacktoberfest contributions at:
3131
[hacktoberfest.digitalocean.com/stats](https://hacktoberfest.digitalocean.com/stats/t2013anurag)
3232
@@ -40,5 +40,5 @@
4040

4141
for contributor in CONTRIBUTORS:
4242
FILE.write("* **[" + str(contributor[0]) +"]("+str(contributor[1])+")**\n\n\n")
43+
4344
FILE.close()
44-

0 commit comments

Comments
 (0)