Skip to content
Snippets Groups Projects
Commit 149e18fc authored by Raniere Silva's avatar Raniere Silva
Browse files

Change shebang to Python3

Close swcarpentry/styles#271
parent 0802ec9a
Branches
Tags
No related merge requests found
......@@ -97,7 +97,7 @@ lesson-check-all :
## unittest : run unit tests on checking tools.
unittest :
python bin/test_lesson_check.py
@bin/test_lesson_check.py
## lesson-files : show expected names of generated files for debugging.
lesson-files :
......
#!/usr/bin/env python
#!/usr/bin/env python3
"""
Check lesson files and their contents.
......
#!/usr/bin/env python
#!/usr/bin/env python3
"""Initialize a newly-created repository."""
......
#!/usr/bin/env python
#!/usr/bin/env python3
"""
Check repository settings.
......
#!/usr/bin/env python3
import unittest
import lesson_check
......
import sys
import os
import json
......
#!/usr/bin/env python
#!/usr/bin/env python3
'''Check that a workshop's index.html metadata is valid. See the
docstrings on the checking functions for a summary of the checks.
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment