From: Joseph Sutton Date: Thu, 27 Jul 2023 20:15:15 +0000 (+1200) Subject: pyglue: Add missing whitespace in docstrings X-Git-Tag: tevent-0.16.0~1193 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=07299ab79278e1d70d5a136af6d426c15cb97583;p=thirdparty%2Fsamba.git pyglue: Add missing whitespace in docstrings Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- diff --git a/python/pyglue.c b/python/pyglue.c index 68597cbb1bf..e7b01b83c80 100644 --- a/python/pyglue.c +++ b/python/pyglue.c @@ -536,12 +536,12 @@ static PyMethodDef py_misc_methods[] = { METH_VARARGS, "generate_random_machine_password(min, max) -> string\n" "Generate random password " "(based on random utf16 characters converted to utf8 or " - "random ascii characters if 'unix charset' is not 'utf8')" + "random ascii characters if 'unix charset' is not 'utf8') " "with a length >= min (at least 14) and <= max (at most 255)." }, { "check_password_quality", (PyCFunction)py_check_password_quality, METH_VARARGS, "check_password_quality(pass) -> bool\n" - "Check password quality against Samba's check_password_quality," - "the implementation of Microsoft's rules:" + "Check password quality against Samba's check_password_quality, " + "the implementation of Microsoft's rules: " "http://msdn.microsoft.com/en-us/subscriptions/cc786468%28v=ws.10%29.aspx" }, { "unix2nttime", (PyCFunction)py_unix2nttime, METH_VARARGS,