Use /usr/bin/env trick to find python.  Patch by Krister Walfridsson.



git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75271 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/utils/test/ProgressBar.py b/utils/test/ProgressBar.py
index 2e1f24a..13db7ec 100644
--- a/utils/test/ProgressBar.py
+++ b/utils/test/ProgressBar.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
 
 # Source: http://code.activestate.com/recipes/475116/, with
 # modifications by Daniel Dunbar.