We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 384bcd8 commit f94648fCopy full SHA for f94648f
fetch_contributors.py
@@ -26,7 +26,7 @@
26
CONTRIBUTORS.append((contributor['login'], contributor['html_url']))
27
28
#write to the file contributors.md
29
-FILE = open(os.path.join(os.path.dirname(__file__), 'contributors.md'), "w")
+FILE = open(os.path.join(os.path.dirname(__file__), 'CONTRIBUTORS.md'), "w")
30
FILE.write("""## Check your hacktoberfest contributions at:
31
[hacktoberfest.digitalocean.com/stats](https://hacktoberfest.digitalocean.com/stats/t2013anurag)
32
@@ -40,5 +40,5 @@
40
41
for contributor in CONTRIBUTORS:
42
FILE.write("* **[" + str(contributor[0]) +"]("+str(contributor[1])+")**\n\n\n")
43
+
44
FILE.close()
-
0 commit comments