Correct examples.

This commit is contained in:
Itamar Turner-Trauring 2020-12-18 11:26:10 -05:00
parent 26297c296d
commit 8f4a0379ea

View File

@ -59,10 +59,10 @@ def run_cli_native(verb, *args, **kwargs):
Most code should prefer ``run_cli_unicode`` which deals with all the
necessary encoding considerations.
:param native_str verb: The command to run. For example, ``b"create-node"``.
:param native_str verb: The command to run. For example, ``"create-node"``.
:param [native_str] args: The arguments to pass to the command. For example,
``(b"--hostname=localhost",)``.
``("--hostname=localhost",)``.
:param [native_str] nodeargs: Extra arguments to pass to the Tahoe executable
before ``verb``.