]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
pyglue: Add missing whitespace in docstrings
authorJoseph Sutton <josephsutton@catalyst.net.nz>
Thu, 27 Jul 2023 20:15:15 +0000 (08:15 +1200)
committerAndrew Bartlett <abartlet@samba.org>
Tue, 8 Aug 2023 04:39:37 +0000 (04:39 +0000)
Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
python/pyglue.c

index 68597cbb1bf2e48d3eaa8b365bb3a5f7fd70a5fa..e7b01b83c80e5b9e3c1fdb4e76460dfd0871874d 100644 (file)
@@ -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,