Skip to content

Commit

Permalink
Change shebang to Python3
Browse files Browse the repository at this point in the history
Close #271
  • Loading branch information
rgaiacs committed May 23, 2018
1 parent 0802ec9 commit 149e18f
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 :
Expand Down
2 changes: 1 addition & 1 deletion bin/lesson_check.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""
Check lesson files and their contents.
Expand Down
2 changes: 1 addition & 1 deletion bin/lesson_initialize.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

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

Expand Down
2 changes: 1 addition & 1 deletion bin/repo_check.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""
Check repository settings.
Expand Down
2 changes: 2 additions & 0 deletions bin/test_lesson_check.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python3

import unittest

import lesson_check
Expand Down
1 change: 0 additions & 1 deletion bin/util.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

import sys
import os
import json
Expand Down
2 changes: 1 addition & 1 deletion bin/workshop_check.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/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.
Expand Down

0 comments on commit 149e18f

Please sign in to comment.