diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-03-08 03:34:05 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-03-08 03:34:05 +0000 |
| commit | a89b51b033737173b771a43eac18d4d83b799104 (patch) | |
| tree | f013c998bc5fea6bbe7fc51bb137109337dbd498 /extras | |
| parent | 43809de79db2dfd3f967f4c95bca98f8f6c75fb5 (diff) | |
Fixed #1240 -- Fixed portability problem in bash completion script. Thanks,
Paolo.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4677 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'extras')
| -rw-r--r-- | extras/django_bash_completion | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/django_bash_completion b/extras/django_bash_completion index bd066ec08f..64d8961ca7 100644 --- a/extras/django_bash_completion +++ b/extras/django_bash_completion @@ -147,7 +147,7 @@ complete -F _django_completion django-admin.py manage.py # 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 |
