From 85d909194de7a5e023dd54d62d6188623be97daf Mon Sep 17 00:00:00 2001 From: Wryn Wagner Date: Fri, 5 Feb 2021 15:49:55 -0700 Subject: [PATCH] fixed issue with getting manage.py command when in the correct directory --- vim/testing.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/testing.vim b/vim/testing.vim index 9359d17..3ad973e 100644 --- a/vim/testing.vim +++ b/vim/testing.vim @@ -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