Skip to content

Commit

Permalink
Set shebang line on our Python validation scripts to be explicitly Py…
Browse files Browse the repository at this point in the history
…thon 3
  • Loading branch information
matyasselmeci committed Mar 15, 2024
1 parent e74b2db commit 2972882
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bin/test_validate_dn_format.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/python3

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

import glob
import os
Expand Down
4 changes: 1 addition & 3 deletions bin/vomses-crosscheck
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
#!/usr/bin/python
from __future__ import print_function

#!/usr/bin/python3
import re
import os
import glob
Expand Down

0 comments on commit 2972882

Please sign in to comment.