Fix stat code to return name of group owning the file rather than name of group that the file's owner belongs to.

Followup to #17
pull/18777/head
Toshio Kuratomi 10 years ago committed by Matt Clay
parent 2dde45cea9
commit a6643160c5

@ -342,7 +342,7 @@ def main():
d['pw_name'] = pw.pw_name d['pw_name'] = pw.pw_name
grp_info = grp.getgrgid(pw.pw_gid) grp_info = grp.getgrgid(st.st_gid)
d['gr_name'] = grp_info.gr_name d['gr_name'] = grp_info.gr_name
except: except:
pass pass

Loading…
Cancel
Save