prevent double logpoints

This commit is contained in:
piair 2022-09-30 15:05:18 +02:00
parent 43e970a1aa
commit 20f6eb6796

11
V4.py
View File

@ -1051,11 +1051,12 @@ def CustomStart(Credentials):
except Exception as e: except Exception as e:
printf(e) printf(e)
break break
try: if not "tout" in action
LogPoint(_mail) try:
except Exception as e: LogPoint(_mail)
print("CustomStart " + str(e)) except Exception as e:
print("CustomStart " + str(e))
driver.close() driver.close()