summaryrefslogtreecommitdiff
path: root/dev-python/django/files/django-1.4.19-bashcomp.patch
blob: 26d5f7ee140546cb91b15593e88dc71a62746aed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
 extras/django_bash_completion | 17 +----------------
 1 file changed, 1 insertion(+), 16 deletions(-)

diff --git a/extras/django_bash_completion b/extras/django_bash_completion
old mode 100755
new mode 100644
index 1c3887e..748227d
--- a/extras/django_bash_completion
+++ b/extras/django_bash_completion
@@ -37,7 +37,7 @@ _django_completion()
                    COMP_CWORD=$COMP_CWORD \
 	               DJANGO_AUTO_COMPLETE=1 $1 ) )
 }
-complete -F _django_completion -o default django-admin.py manage.py django-admin
+complete -F _django_completion -o default django-admin.py django-admin
 
 _python_django_completion()
 {
@@ -55,18 +55,3 @@ _python_django_completion()
         fi
     fi
 }
-
-# Support for multiple interpreters.
-unset pythons
-if command -v whereis &>/dev/null; then
-    python_interpreters=$(whereis python | cut -d " " -f 2-)
-    for python in $python_interpreters; do
-        pythons="${pythons} $(basename -- $python)"
-    done
-    pythons=$(echo $pythons | tr " " "\n" | sort -u | tr "\n" " ")
-else
-    pythons=python
-fi
-
-complete -F _python_django_completion -o default $pythons
-