##// END OF EJS Templates
py3: pass str into grp.getgrnam...
Pulkit Goyal -
r41645:587a3c97 default
parent child Browse files
Show More
@@ -5,6 +5,7 b' test-absorb-phase.t'
5 5 test-absorb-rename.t
6 6 test-absorb-strip.t
7 7 test-absorb.t
8 test-acl.t
8 9 test-add.t
9 10 test-addremove-similar.t
10 11 test-addremove.t
@@ -583,6 +583,7 b' def groupmembers(name):'
583 583 """Return the list of members of the group with the given
584 584 name, KeyError if the group does not exist.
585 585 """
586 name = pycompat.sysstr(name)
586 587 return list(grp.getgrnam(name).gr_mem)
587 588
588 589 def spawndetached(args):
General Comments 0
You need to be logged in to leave comments. Login now