remove accidental change

This commit is contained in:
Emmo Emminghaus 2018-11-10 23:39:28 +01:00
parent 733a2bfa30
commit e5c22eac0d
1 changed files with 2 additions and 1 deletions

View File

@ -115,4 +115,5 @@ def posix_acl_use_stored_uid_gid(acl):
def getosusername(): def getosusername():
"""Return the os user name.""" """Return the os user name."""
return uid2user(os.getuid()) uid = os.getuid()
return uid2user(uid, uid)