Skip to content

Commit

Permalink
pySim-*.py: Set shebang to use python v2
Browse files Browse the repository at this point in the history
Nowadays bin/python usually points to python3, and this script is written
in python2, which means if run directly from terminal it will fail with
some print syntax errors.

Change-Id: I6ab4e9edc44a8045915d4828c6de2fa98027fb7e
  • Loading branch information
pespin committed Dec 29, 2017
1 parent 1d087ef commit ac23ad5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pySim-prog.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2

#
# Utility to deal with sim cards and program the 'magic' ones easily
Expand Down
2 changes: 1 addition & 1 deletion pySim-read.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2

#
# Utility to display some informations about a SIM card
Expand Down

0 comments on commit ac23ad5

Please sign in to comment.