import time
class OopsError(Exception):
	def __init__(self, stx):
		self.str = stx
	def __str__(self):
		return self.str
	pass

action_time = time.time()

