mirror of https://gitlab.com/pamhyr/pamhyr2
tools: Add try to pwd user name get.
parent
31974bc7b6
commit
45d6f228cf
|
|
@ -302,7 +302,10 @@ def timestamp_to_old_pamhyr_date(time: int):
|
|||
|
||||
def get_user_name():
|
||||
if with_pwd:
|
||||
try:
|
||||
return pwd.getpwuid(os.getuid()).pw_gecos
|
||||
except:
|
||||
return "Me"
|
||||
else:
|
||||
return "Me"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue