From d4f1b1e8d643e74a0bfb14245b200ffc319528de Mon Sep 17 00:00:00 2001 From: Chris Fischer Date: Wed, 27 Oct 2021 12:24:48 -0600 Subject: [PATCH] Change shebang lines to python3 --- checkout_externals | 2 +- manic/checkout.py | 2 +- manic/externals_description.py | 2 +- manic/utils.py | 2 +- test/test_sys_checkout.py | 2 +- test/test_sys_repository_git.py | 2 +- test/test_unit_externals_description.py | 2 +- test/test_unit_externals_status.py | 2 +- test/test_unit_repository.py | 2 +- test/test_unit_repository_git.py | 2 +- test/test_unit_repository_svn.py | 2 +- test/test_unit_utils.py | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/checkout_externals b/checkout_externals index a0698baef0..48bce24010 100755 --- a/checkout_externals +++ b/checkout_externals @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """Main driver wrapper around the manic/checkout utility. diff --git a/manic/checkout.py b/manic/checkout.py index 90169bd226..2223b1f0d8 100755 --- a/manic/checkout.py +++ b/manic/checkout.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """ Tool to assemble repositories represented in a model-description file. diff --git a/manic/externals_description.py b/manic/externals_description.py index 42755e1a52..6a54935935 100644 --- a/manic/externals_description.py +++ b/manic/externals_description.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """Model description diff --git a/manic/utils.py b/manic/utils.py index f57f43930c..9c63ffe65e 100644 --- a/manic/utils.py +++ b/manic/utils.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """ Common public utilities for manic package diff --git a/test/test_sys_checkout.py b/test/test_sys_checkout.py index 9889feba0c..b13e96a17d 100644 --- a/test/test_sys_checkout.py +++ b/test/test_sys_checkout.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """Unit test driver for checkout_externals diff --git a/test/test_sys_repository_git.py b/test/test_sys_repository_git.py index f6dbf84284..29d5433b95 100644 --- a/test/test_sys_repository_git.py +++ b/test/test_sys_repository_git.py @@ -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. diff --git a/test/test_unit_externals_description.py b/test/test_unit_externals_description.py index 0b1248f670..30e5288499 100644 --- a/test/test_unit_externals_description.py +++ b/test/test_unit_externals_description.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """Unit test driver for checkout_externals diff --git a/test/test_unit_externals_status.py b/test/test_unit_externals_status.py index f8e953f756..f019514e9e 100644 --- a/test/test_unit_externals_status.py +++ b/test/test_unit_externals_status.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """Unit test driver for the manic external status reporting module. diff --git a/test/test_unit_repository.py b/test/test_unit_repository.py index 5b9c242fd3..1b93861834 100644 --- a/test/test_unit_repository.py +++ b/test/test_unit_repository.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """Unit test driver for checkout_externals diff --git a/test/test_unit_repository_git.py b/test/test_unit_repository_git.py index b153e556a9..a6ad9f1003 100644 --- a/test/test_unit_repository_git.py +++ b/test/test_unit_repository_git.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """Unit test driver for checkout_externals diff --git a/test/test_unit_repository_svn.py b/test/test_unit_repository_svn.py index 7ff31c4218..41b173bf3d 100644 --- a/test/test_unit_repository_svn.py +++ b/test/test_unit_repository_svn.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """Unit test driver for checkout_externals diff --git a/test/test_unit_utils.py b/test/test_unit_utils.py index c994e58ebe..80e1636649 100644 --- a/test/test_unit_utils.py +++ b/test/test_unit_utils.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """Unit test driver for checkout_externals