Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes typo in MQTT Client docstring #864

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/paho/mqtt/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1229,15 +1229,15 @@ def tls_set(
is mandatory.
:param str certfile: PEM encoded client certificate filename. Used with
keyfile for client TLS based authentication. Support for this feature is
broker dependent. Note that if the files in encrypted and needs a password to
broker dependent. Note that if the file is encrypted and needs a password to
decrypt it, then this can be passed using the keyfile_password argument - you
should take precautions to ensure that your password is
not hard coded into your program by loading the password from a file
for example. If you do not provide keyfile_password, the password will
be requested to be typed in at a terminal window.
:param str keyfile: PEM encoded client private keys filename. Used with
certfile for client TLS based authentication. Support for this feature is
broker dependent. Note that if the files in encrypted and needs a password to
broker dependent. Note that if the file is encrypted and needs a password to
decrypt it, then this can be passed using the keyfile_password argument - you
should take precautions to ensure that your password is
not hard coded into your program by loading the password from a file
Expand Down