Description: Use system Python
 Python scripts in Debian packages should use the system-installed Python,
 rather than /usr/bin/env which may use a different Python depending on the
 user's $PATH.
Author: Tristan Seligmann <mithrandi@debian.org>
Forwarded: no
Last-Update: 2014-12-10
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
Index: fish/share/tools/create_manpage_completions.py
===================================================================
--- fish.orig/share/tools/create_manpage_completions.py	2017-12-17 11:50:57.049143597 +0200
+++ fish/share/tools/create_manpage_completions.py	2017-12-17 11:50:57.041143458 +0200
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python
 # -*- coding: utf-8 -*-
 
 # Run me like this: ./create_manpage_completions.py /usr/share/man/man{1,8}/* > man_completions.fish
Index: fish/share/tools/deroff.py
===================================================================
--- fish.orig/share/tools/deroff.py	2017-12-17 11:50:57.049143597 +0200
+++ fish/share/tools/deroff.py	2017-12-17 11:50:57.045143528 +0200
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python
 # -*- coding: utf-8 -*-
 
 """ Deroff.py, ported to Python from the venerable deroff.c """
Index: fish/share/tools/web_config/webconfig.py
===================================================================
--- fish.orig/share/tools/web_config/webconfig.py	2017-12-17 11:50:57.049143597 +0200
+++ fish/share/tools/web_config/webconfig.py	2017-12-17 11:50:57.045143528 +0200
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python
 
 from __future__ import unicode_literals
 from __future__ import print_function
