adding three day lock release; closes #4

master
endorphant 2018-10-14 16:22:55 -04:00
parent 52d394f432
commit 6393827e62
1 changed files with 4 additions and 2 deletions

View File

@ -1493,10 +1493,12 @@ def save_subs(subs):
def graffiti_handler():
'''
Main graffiti handler.
Main graffiti handler; checks for lockfile from another editing sesison
(overwriting by default if the lock is more than three days old.
'''
if os.path.isfile(config.WALL_LOCK):
if os.path.isfile(config.WALL_LOCK) and \
time.time() - os.path.getmtime(config.WALL_LOCK) < 60*60*24*3:
redraw("sorry, {friend}, but someone's there right now. try again in a few!".format(friend=chatter.say("friend")))
else:
subprocess.call(["touch", config.WALL_LOCK])