Fix typo in the getgrnam

getgrnam is under grp module instead of pwd
This commit is contained in:
Mond WAN 2025-03-14 18:01:52 +00:00
parent 1bc351e794
commit d05b6c5425

View File

@ -1177,7 +1177,7 @@ class Group(Setting):
Switch worker process to run as this group.
A valid group id (as an integer) or the name of a user that can be
retrieved with a call to ``pwd.getgrnam(value)`` or ``None`` to not
retrieved with a call to ``grp.getgrnam(value)`` or ``None`` to not
change the worker processes group.
"""