tools: Add try to pwd user name get.

setup.py
Pierre-Antoine Rouby 2024-05-22 16:16:40 +02:00
parent 31974bc7b6
commit 45d6f228cf
1 changed files with 4 additions and 1 deletions

View File

@ -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"