1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-26 01:37:20 +00:00

remove accidental change

This commit is contained in:
Emmo Emminghaus 2018-11-10 23:39:28 +01:00
parent 733a2bfa30
commit e5c22eac0d

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)