fixed issue with getting manage.py command when in the correct directory

This commit is contained in:
Wryn Wagner 2021-02-05 15:49:55 -07:00
parent 5ab6ef1037
commit 85d909194d

View File

@ -57,7 +57,7 @@ function GetDjangoTestCommand()
endfunction
function GetDjangoManagePy()
return substitute(expand(getcwd()), "/code/.*", "/code/manage.py", "")
return substitute(expand(getcwd()), "/code.*", "/code/manage.py", "")
endfunction