0007824: Regression: running gramps from crontab fails

This commit is contained in:
kulath 2015-03-01 16:53:45 +00:00
parent b89cdeb077
commit 9444cbe388

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: