summaryrefslogtreecommitdiff
path: root/extras
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2019-11-01 21:08:23 -0700
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-12-06 12:11:44 +0100
commit5708327c3769262b845730996ca2784245ada4d1 (patch)
tree131808ba694efd6c52ed6e0bf3c941267c6fa301 /extras
parent8eb0f73eed4535a9e53ffd988242b7294d859a55 (diff)
Fixed #23433 -- Deprecated django-admin.py entry point in favor of django-admin.
Unify on the entry point created by setuptools entry_points feature.
Diffstat (limited to 'extras')
-rwxr-xr-xextras/django_bash_completion6
1 files changed, 3 insertions, 3 deletions
diff --git a/extras/django_bash_completion b/extras/django_bash_completion
index 3c2f14c263..fa77d59aff 100755
--- a/extras/django_bash_completion
+++ b/extras/django_bash_completion
@@ -1,6 +1,5 @@
-# #########################################################################
-# This bash script adds tab-completion feature to django-admin.py and
-# manage.py.
+# #############################################################################
+# This bash script adds tab-completion feature to django-admin and manage.py.
#
# Testing it out without installing
# =================================
@@ -37,6 +36,7 @@ _django_completion()
COMP_CWORD=$COMP_CWORD \
DJANGO_AUTO_COMPLETE=1 $1 ) )
}
+# When the django-admin.py deprecation ends, remove django-admin.py.
complete -F _django_completion -o default django-admin.py manage.py django-admin
_python_django_completion()