From 8e6c9f555fb9134e391168bb5e4c7caef2698e80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20N=C3=BC=C3=9Flein?= Date: Mon, 30 May 2016 19:28:48 +0200 Subject: [PATCH] Update staticsitegen.rst (#2647) added python3 hint for http.server --- docs/reference/contrib/staticsitegen.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/contrib/staticsitegen.rst b/docs/reference/contrib/staticsitegen.rst index d3ad2a9847..f05c4181fc 100644 --- a/docs/reference/contrib/staticsitegen.rst +++ b/docs/reference/contrib/staticsitegen.rst @@ -40,7 +40,7 @@ Rendering To render a site, run ``./manage.py staticsitegen``. This will render the entire website and place the HTML in a folder called ``medusa_output``. The static and media folders need to be copied into this folder manually after the rendering is complete. This feature inherits ``django-medusa``'s ability to render your static site to Amazon S3 or Google App Engine; see the `medusa docs `_ for configuration details. -To test, open the ``medusa_output`` folder in a terminal and run ``python -m SimpleHTTPServer``. +To test, open the ``medusa_output`` folder in a terminal and run ``python -m SimpleHTTPServer`` or ``python3 -m http.server`` respectively. Advanced topics