Skip to content

Commit c00f2e7

Browse files
committed
Do not hardcode Python path in the shebang line
1 parent 0eea21d commit c00f2e7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ in the code, so a brief description of the code is presented in this
9393
section. Here is the entire code presented once again for convenience:
9494

9595
```python
96-
#!/usr/bin/python3
96+
#!/usr/bin/env python3
9797

9898
import base64
9999
import hmac

mintotp.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python3
1+
#!/usr/bin/env python3
22

33
import base64
44
import hmac

0 commit comments

Comments
 (0)