contrib/svn-fe: fix shebang for svnrdump_sim.py

The shebang for a python script should be "/usr/bin/env python" and not "/usr/bin/python". On some OSes like AIX, python default path is not under "/usr/bin" ("/opt/freeware/bin" for AIX). Note the main reason behind this change is that AIX rpm will add a dependency on "/usr/bin/python" instead of "/usr/bin/env". Signed-off-by: Clément Chigot <clement.chigot@atos.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Clément Chigot committed Sep 17, 2019 at 14:58 UTC af78249463bd1cc016ee0f1886f27fde03f8d073
1 file changed +1 -1
contrib/svn-fe/svnrdump_sim.py
+1 -1
@@ -1,4 +1,4 @@
1 -#!/usr/bin/python
1 +#!/usr/bin/env python
2 """
3 Simulates svnrdump by replaying an existing dump from a file, taking care
4 of the specified revision range.