Skip to content

Commit

Permalink
Change shebang lines to python3
Browse files Browse the repository at this point in the history
  • Loading branch information
fischer-ncar committed Oct 27, 2021
1 parent 2fd941a commit d4f1b1e
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion checkout_externals
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""Main driver wrapper around the manic/checkout utility.
Expand Down
2 changes: 1 addition & 1 deletion manic/checkout.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""
Tool to assemble repositories represented in a model-description file.
Expand Down
2 changes: 1 addition & 1 deletion manic/externals_description.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""Model description
Expand Down
2 changes: 1 addition & 1 deletion manic/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
"""
Common public utilities for manic package
Expand Down
2 changes: 1 addition & 1 deletion test/test_sys_checkout.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""Unit test driver for checkout_externals
Expand Down
2 changes: 1 addition & 1 deletion test/test_sys_repository_git.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""Tests of some of the functionality in repository_git.py that actually
interacts with git repositories.
Expand Down
2 changes: 1 addition & 1 deletion test/test_unit_externals_description.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""Unit test driver for checkout_externals
Expand Down
2 changes: 1 addition & 1 deletion test/test_unit_externals_status.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""Unit test driver for the manic external status reporting module.
Expand Down
2 changes: 1 addition & 1 deletion test/test_unit_repository.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""Unit test driver for checkout_externals
Expand Down
2 changes: 1 addition & 1 deletion test/test_unit_repository_git.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""Unit test driver for checkout_externals
Expand Down
2 changes: 1 addition & 1 deletion test/test_unit_repository_svn.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""Unit test driver for checkout_externals
Expand Down
2 changes: 1 addition & 1 deletion test/test_unit_utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""Unit test driver for checkout_externals
Expand Down

0 comments on commit d4f1b1e

Please sign in to comment.