Skip to content

Commit

Permalink
Remove no longer necessary comment
Browse files Browse the repository at this point in the history
  • Loading branch information
thathexa committed May 27, 2017
1 parent 93e2de6 commit 0d92790
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion list_langs.py
Expand Up @@ -19,6 +19,6 @@
for filename in sorted(os.listdir(dirname), key=lambda s: s.lower()):
if os.path.isfile(os.path.join(dirname, filename)):
lang = os.path.splitext(filename)[0].replace('-', ' ').replace('_', ' ').title()
readme.write('* [{}]({})\n'.format(lang, quote(os.path.join(dirname, filename)))) # Cut trailing space
readme.write('* [{}]({})\n'.format(lang, quote(os.path.join(dirname, filename))))

readme.close()

0 comments on commit 0d92790

Please sign in to comment.