diff options
author | fauxpark <fauxpark@gmail.com> | 2019-11-30 10:45:22 +1100 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-11-29 15:45:22 -0800 |
commit | fb02593bd4d58c8d046673ed872d972544640a2a (patch) | |
tree | f13f66f88c52fe0038e5001e770e53820326d01d | |
parent | c0dbd81b2b652a3b44f5bbb22ee0ddaff8ed68ea (diff) | |
download | firmware-fb02593bd4d58c8d046673ed872d972544640a2a.tar.gz firmware-fb02593bd4d58c8d046673ed872d972544640a2a.tar.bz2 firmware-fb02593bd4d58c8d046673ed872d972544640a2a.zip |
Use os.chdir for `qmk docs` instead of a custom HTTP request handler (#7493)
-rw-r--r-- | lib/python/qmk/cli/docs.py | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/python/qmk/cli/docs.py b/lib/python/qmk/cli/docs.py index b41989139..163c8b801 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.") |