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:
printf(e)
break
try:
LogPoint(_mail)
except Exception as e:
print("CustomStart " + str(e))
if not "tout" in action
try:
LogPoint(_mail)
except Exception as e:
print("CustomStart " + str(e))
driver.close()