From b9b33307998db8c8b936988ed53fc69981f4defc Mon Sep 17 00:00:00 2001 From: David Pursehouse Date: Thu, 1 Oct 2015 11:23:28 +0900 Subject: [PATCH] Correct command to start server in README It should be python manage.py runserver rather than python manage runserver Change-Id: I8a351c3a1af93bfdae17142616a4c57a98aec072 --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README b/README index 1892ad7..f354278 100644 --- a/README +++ b/README @@ -61,6 +61,6 @@ that path in the manage.py by modifiing ``dburi``. Now start the development server:: - python manage runserver + python manage.py runserver Enjoy!