on newer systems where Python2 and Python3 coexist there is an error:
*** ERROR: ambiguous python shebang in /usr/share/tuleap/plugins/webdav/vendor/sabre/dav/bin/googlecode_upload.py: #!/usr/bin/env python. Change it to python3 (or python2) explicitly.
*** ERROR: ambiguous python shebang in /usr/share/tuleap/plugins/webdav/vendor/sabre/dav/bin/naturalselection.py: #!/usr/bin/env python. Change it to python3 (or python2) explicitly.
The fix is simple, against:
https://github.com/Enalean/dav.git (master branch)
Is there a procedure how to commit this if any interest on your side for this?
diff --git a/bin/googlecode_upload.py b/bin/googlecode_upload.py
index caafd5de..ee57c949 100755
--- a/bin/googlecode_upload.py
+++ b/bin/googlecode_upload.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python2
#
# Copyright 2006, 2007 Google Inc. All Rights Reserved.
# Author:
danderson@google.com (David Anderson)
diff --git a/bin/naturalselection b/bin/naturalselection
index 7e20439c..563713d6 100755
--- a/bin/naturalselection
+++ b/bin/naturalselection
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python2
#
# Copyright (c) 2009-2010 Evert Pot