Kaydet (Commit) 4af88ccb authored tarafından Mads Jensen's avatar Mads Jensen Kaydeden (comit) Tim Graham

Refs #23919 -- Removed Python 2 reference in django_bash_completion.

üst 31a2af1c
......@@ -43,7 +43,7 @@ _python_django_completion()
{
if [[ ${COMP_CWORD} -ge 2 ]]; then
local PYTHON_EXE=${COMP_WORDS[0]##*/}
echo $PYTHON_EXE | egrep "python([2-9]\.[0-9])?" >/dev/null 2>&1
echo $PYTHON_EXE | egrep "python([3-9]\.[0-9])?" >/dev/null 2>&1
if [[ $? == 0 ]]; then
local PYTHON_SCRIPT=${COMP_WORDS[1]##*/}
echo $PYTHON_SCRIPT | egrep "manage\.py|django-admin(\.py)?" >/dev/null 2>&1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment