Signed-off-by: vladmandic <mandic00@live.com>
pull/59/head
vladmandic 2025-11-23 13:28:57 -05:00
parent 5c74458e2c
commit 9942ea11aa
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ def get_user():
if sys.platform != 'win32':
try:
import pwd
return pwd.getpwuid(os.getuid())[0]
return pwd.getpwuid(os.getuid())[0] # pylint: disable=no-member
except Exception:
pass
return ''