Description: Fix lintian python dependency warnings
 Upstream uses "#!/usr/bin/python2" to call any Python 2.6 or 2.7
 interpreter using the python2 symlink to use same files for all
 supported python platforms. lintian would not accept that and
 warn about missing dependencies. Hardcode the version to 2.7,
 which should be the most common, to make lintian happy.
Author: Roman Fiedler <roman.fiedler@ait.ac.at>

--- logdata-anomaly-miner/root/usr/lib/logdata-anomaly-miner/AMiner
+++ logdata-anomaly-miner/root/usr/lib/logdata-anomaly-miner/AMiner
@@ -1,4 +1,4 @@
-#!/usr/bin/python2 -BEsStt
+#!/usr/bin/python2.7 -BEsStt
 
 """This is the main program of the "aminer" logfile miner tool.
 It does not import any local default site packages to decrease
--- logdata-anomaly-miner/root/usr/lib/logdata-anomaly-miner/AMinerRemoteControl
+++ logdata-anomaly-miner/root/usr/lib/logdata-anomaly-miner/AMinerRemoteControl
@@ -1,4 +1,4 @@
-#!/usr/bin/python2 -BEsStt
+#!/usr/bin/python2.7 -BEsStt
 # This tool allows to connect to a remote control socket, send
 # requests and retrieve the responses. To allow remote use of
 # this tool, e.g. via SSH forwarding, the remote control address
