From 4eb514298e5468a458ba29eaaef8ab91e5eae8dd Mon Sep 17 00:00:00 2001 From: ilikerobots Date: Fri, 17 Jul 2020 16:21:54 +0300 Subject: [PATCH] Fix fruit requirements text --- hooks/pre_gen_project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/pre_gen_project.py b/hooks/pre_gen_project.py index 5631be12f..1b72d57bc 100644 --- a/hooks/pre_gen_project.py +++ b/hooks/pre_gen_project.py @@ -89,5 +89,5 @@ if ( "{{ cookiecutter.use_vuex }}".lower() == "n" or "{{ cookiecutter.use_vue }}".lower() == "n" ) and "{{ cookiecutter.use_fruit_demo }}" == "y": - print("The fruit demo app requires use of Vue, Vuex, and DRF.") + print("The fruit demo app requires use of Vue and Vuex.") sys.exit(1)