Unverified Commit 9f4023ad authored by Raniere Silva's avatar Raniere Silva Committed by GitHub
Browse files

Merge pull request #277 from rgaiacs/bin-python3

Change shebang to Python3
parents 0802ec9a 149e18fc
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