Author: Daniel Leidert <dleidert@debian.org>
Description: Fix lintian warning
  The script uses the wrong interpreter path so lintian complains with
  wrong-path-for-interpreter.

Index: apbs/apbs/tests/apbs_tester.py
===================================================================
--- apbs.orig/apbs/tests/apbs_tester.py	2020-06-18 12:59:07.648580596 +0800
+++ apbs/apbs/tests/apbs_tester.py	2020-06-18 12:59:07.644580632 +0800
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#!/usr/bin/python3
 
 """
 Provides utility for testing apbs against examples and known results
Index: apbs/apbs/tests/apbs_logger.py
===================================================================
--- apbs.orig/apbs/tests/apbs_logger.py	2020-06-18 12:59:07.648580596 +0800
+++ apbs/apbs/tests/apbs_logger.py	2020-06-18 12:59:07.644580632 +0800
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#!/usr/bin/python3
 
 """
 Provides a logger that prints regular messages and logger messages.
Index: apbs/apbs/tests/apbs_check_forces.py
===================================================================
--- apbs.orig/apbs/tests/apbs_check_forces.py	2020-06-18 12:59:07.648580596 +0800
+++ apbs/apbs/tests/apbs_check_forces.py	2020-06-18 12:59:07.644580632 +0800
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#!/usr/bin/python3
 
 """
 Checks computed forces from an apbs run
Index: apbs/apbs/tools/python/noinput.py
===================================================================
--- apbs.orig/apbs/tools/python/noinput.py	2020-06-18 12:59:07.648580596 +0800
+++ apbs/apbs/tools/python/noinput.py	2020-06-18 12:59:07.644580632 +0800
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
 """ Python APBS No Input Driver File
 
     This module allows a user to run APBS through Python. Use this module if
Index: apbs/apbs/examples/protein-rna/fit.py
===================================================================
--- apbs.orig/apbs/examples/protein-rna/fit.py	2020-06-18 12:59:07.648580596 +0800
+++ apbs/apbs/examples/protein-rna/fit.py	2020-06-18 12:59:07.644580632 +0800
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
 """Performs unweighted linear regression.  Can be invoked from command line by
 providing data pairs through stdin.
 
Index: apbs/apbs/tests/apbs_check_results.py
===================================================================
--- apbs.orig/apbs/tests/apbs_check_results.py	2020-06-18 12:59:07.648580596 +0800
+++ apbs/apbs/tests/apbs_check_results.py	2020-06-18 12:59:07.644580632 +0800
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#!/usr/bin/python3
 
 """
 Provides functions for verifying results from a test run
Index: apbs/apbs/examples/protein-rna/apbs_dx.py
===================================================================
--- apbs.orig/apbs/examples/protein-rna/apbs_dx.py	2020-06-18 12:53:31.639180414 +0800
+++ apbs/apbs/examples/protein-rna/apbs_dx.py	2020-06-18 12:59:24.528426179 +0800
@@ -1,4 +1,4 @@
-#!/bin/python
+#!/usr/bin/python3
 
 """
 Create files for the protein-rna tests
