Commit 149e18fc authored by Raniere Silva's avatar Raniere Silva
Browse files

Change shebang to Python3

Close swcarpentry/styles#271
parent 0802ec9a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 :
+1 −1
Original line number Diff line number Diff line
#!/usr/bin/env python
#!/usr/bin/env python3

"""
Check lesson files and their contents.
+1 −1
Original line number Diff line number Diff line
#!/usr/bin/env python
#!/usr/bin/env python3

"""Initialize a newly-created repository."""

+1 −1
Original line number Diff line number Diff line
#!/usr/bin/env python
#!/usr/bin/env python3

"""
Check repository settings.
+2 −0
Original line number Diff line number Diff line
#!/usr/bin/env python3

import unittest

import lesson_check
Loading