Description: point hashbangs at python3
 The hashbangs point at to-be-removed "python" (ie, python2), despite the
 scripts being supposed to work with both.  Also, using "env" is wrong.

--- crawl-0.24.0.orig/source/util/species-gen.py
+++ crawl-0.24.0/source/util/species-gen.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
 
 from __future__ import print_function
 
--- crawl-0.24.0.orig/source/util/txc
+++ crawl-0.24.0/source/util/txc
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
 # -*- coding: utf-8 -*-
 
 import os, re, sys, codecs, difflib
--- crawl-0.24.0.orig/source/webserver/server.py
+++ crawl-0.24.0/source/webserver/server.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
 import os, os.path, errno, sys
 
 import tornado.httpserver
