From 43c8345c7c79c251a8856f7b211c8eaac9b2af33 Mon Sep 17 00:00:00 2001 From: thegamecracks <61257169+thegamecracks@users.noreply.github.com> Date: Mon, 25 Mar 2024 00:44:04 -0400 Subject: [PATCH] docs: tweak CLI usage description of --cert --- src/dumdum/server.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dumdum/server.py b/src/dumdum/server.py index 2711566..5e9d0e4 100644 --- a/src/dumdum/server.py +++ b/src/dumdum/server.py @@ -1,10 +1,10 @@ """Host a dumdum server. To use TLS encryption, you must provide a certificate and private key. -This can be specified in one of two ways: -1. Specify a single file containing the private key and certificate: +This can be specified as either: +1. A single file containing both the private key and certificate: --cert hello.pem -2. Specify the certificate and private key in separate files: +2. A pair of certificate and private key files, separated with a colon: --cert hello.crt:hello.key """