Author: mtredinnick
Date: 2007-03-07 21:34:05 -0600 (Wed, 07 Mar 2007)
New Revision: 4677

Modified:
   django/trunk/extras/django_bash_completion
Log:
Fixed #1240 -- Fixed portability problem in bash completion script. Thanks,
Paolo.


Modified: django/trunk/extras/django_bash_completion
===================================================================
--- django/trunk/extras/django_bash_completion  2007-03-08 03:21:35 UTC (rev 
4676)
+++ django/trunk/extras/django_bash_completion  2007-03-08 03:34:05 UTC (rev 
4677)
@@ -147,7 +147,7 @@
 # Support for multiple interpreters.
 unset pythons
 if command -v whereis &>/dev/null; then
-    python_interpreters=$(whereis -b python | cut -d " " -f 2-) 
+    python_interpreters=$(whereis python | cut -d " " -f 2-) 
     for python in $python_interpreters; do
         pythons="${pythons} $(basename $python)"
     done


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to