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():
|
def get_user_name():
|
||||||
if with_pwd:
|
if with_pwd:
|
||||||
return pwd.getpwuid(os.getuid()).pw_gecos
|
try:
|
||||||
|
return pwd.getpwuid(os.getuid()).pw_gecos
|
||||||
|
except:
|
||||||
|
return "Me"
|
||||||
else:
|
else:
|
||||||
return "Me"
|
return "Me"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue