0007824: Regression: running gramps from crontab fails

This commit is contained in:
kulath 2015-03-01 16:51:25 +00:00
parent b381f2dd8b
commit 542450bf6d

View File

@ -2529,7 +2529,9 @@ def write_lock_file(name):
try:
user = os.getlogin()
except:
user = os.environ['USER'] #not win, don't need get_env_var
# not win, so don't need get_env_var.
# under cron getlogin() throws and there is no USER.
user = os.environ.get('USER', 'noUSER')
if host:
text = "%s@%s" % (user, host)
else: