1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
From: Ole Streicher <olebole@debian.org>
Date: Sun, 17 Dec 2017 14:24:13 +0100
Subject: Fix path for Python 3
---
lib/stsci/tools/vtor_checks.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/stsci/tools/vtor_checks.py b/lib/stsci/tools/vtor_checks.py
index e9b7a4d..346e844 100755
--- a/lib/stsci/tools/vtor_checks.py
+++ b/lib/stsci/tools/vtor_checks.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
""" This file holds our own over-rides for the standard Validator check
functions. We over-ride them so that we may add our own special keywords
|