diff options
| author | Jason Gross | 2018-05-31 18:45:12 -0400 |
|---|---|---|
| committer | Jason Gross | 2018-05-31 18:45:12 -0400 |
| commit | 3608fe7c20436095cba1a1a62c89ccc70770dac7 (patch) | |
| tree | 0883b1c725ea1a8ebc78d4b958d743ae7fc16a0d | |
| parent | 88a632b508977966b1e8d4f4449824a55ffc65d1 (diff) | |
| parent | b10c4310ad782e5e65b5f7cd6314e682c440fec4 (diff) | |
Merge PR #7652: Explicitly require python2 in python scripts in tools/
| -rwxr-xr-x | tools/make-both-single-timing-files.py | 2 | ||||
| -rwxr-xr-x | tools/make-both-time-files.py | 2 | ||||
| -rwxr-xr-x | tools/make-one-time-file.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/tools/make-both-single-timing-files.py b/tools/make-both-single-timing-files.py index 32c52c7a17..c6af2ff1f8 100755 --- a/tools/make-both-single-timing-files.py +++ b/tools/make-both-single-timing-files.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 import sys from TimeFileMaker import * diff --git a/tools/make-both-time-files.py b/tools/make-both-time-files.py index f730a8d6bd..6434296793 100755 --- a/tools/make-both-time-files.py +++ b/tools/make-both-time-files.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 import sys from TimeFileMaker import * diff --git a/tools/make-one-time-file.py b/tools/make-one-time-file.py index e66136df9d..c9905249e6 100755 --- a/tools/make-one-time-file.py +++ b/tools/make-one-time-file.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 import sys from TimeFileMaker import * |
