summary refs log tree commit diff
path: root/lib/python
diff options
context:
space:
mode:
authorfauxpark <fauxpark@gmail.com>2019-11-30 10:45:22 +1100
committerDrashna Jaelre <drashna@live.com>2019-11-29 15:45:22 -0800
commitfb02593bd4d58c8d046673ed872d972544640a2a (patch)
treef13f66f88c52fe0038e5001e770e53820326d01d /lib/python
parentc0dbd81b2b652a3b44f5bbb22ee0ddaff8ed68ea (diff)
Use os.chdir for `qmk docs` instead of a custom HTTP request handler (#7493)
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/qmk/cli/docs.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/python/qmk/cli/docs.py b/lib/python/qmk/cli/docs.py
index b419891396..163c8b8015 100644
--- a/lib/python/qmk/cli/docs.py
+++ b/lib/python/qmk/cli/docs.py
@@ -1,21 +1,19 @@
 """Serve QMK documentation locally
 """
 import http.server
+import os
 
 from milc import cli
 
 
-class DocsHandler(http.server.SimpleHTTPRequestHandler):
-    def __init__(self, *args, **kwargs):
-        super().__init__(*args, directory='docs', **kwargs)
-
-
 @cli.argument('-p', '--port', default=8936, type=int, help='Port number to use.')
 @cli.subcommand('Run a local webserver for QMK documentation.')
 def docs(cli):
     """Spin up a local HTTPServer instance for the QMK docs.
     """
-    with http.server.HTTPServer(('', cli.config.docs.port), DocsHandler) as httpd:
+    os.chdir('docs')
+
+    with http.server.HTTPServer(('', cli.config.docs.port), http.server.SimpleHTTPRequestHandler) as httpd:
         cli.log.info("Serving QMK docs at http://localhost:%d/", cli.config.docs.port)
         cli.log.info("Press Control+C to exit.")