Skip to content

Commit 88e3dfd

Browse files
committed
changed the : in python3 -m http:server 8000 to a period (python3 -m http.server 8000), which is the correct syntax of the command. Made change in both locations
1 parent fca0fac commit 88e3dfd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,13 +89,13 @@ Best practice workflow for contributing to site changes
8989
::
9090
9191
cd gh-build
92-
python3 -m http:server <port number>
92+
python3 -m http.server <port number>
9393
9494

9595
the most common port number for things like this is 8000, or 8080,
9696
and as such choosing one of these is recommended:
9797

98-
``python3 -m http:server 8000``
98+
``python3 -m http.server 8000``
9999

100100
If you are building the website on a computer which you are
101101
connected to remotely, it will then be necessary to create a tunnel

0 commit comments

Comments
 (0)