From 07299ab79278e1d70d5a136af6d426c15cb97583 Mon Sep 17 00:00:00 2001 From: Joseph Sutton Date: Fri, 28 Jul 2023 08:15:15 +1200 Subject: [PATCH] pyglue: Add missing whitespace in docstrings Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- python/pyglue.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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, -- 2.47.3