forked from endorphant/ttbp
		
	adding three day lock release; closes #4
This commit is contained in:
		
							parent
							
								
									52d394f432
								
							
						
					
					
						commit
						6393827e62
					
				| @ -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]) | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user