From e28b8028dfee8409366a44617ab8896ee91a262b Mon Sep 17 00:00:00 2001 From: Andres Lowrie Date: Sat, 24 Aug 2019 13:02:21 -0500 Subject: [PATCH] Update python http module to favor python3 This may not be necessary but given that python2 will start to phase out in 2020, perhaps this should instruct people to use the python3 version of the simple server one liner --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd7760a..942abe2 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ There are two reasons for using this: You don't need to install any browser plugins or manually add code snippets to your pages for the reload functionality to work, see "How it works" section below for more information. If you don't want/need the live reload, you should probably use something even simpler, like the following Python-based one-liner: - python -m SimpleHTTPServer + python -m http.server Installation