stopuhr fix

This commit is contained in:
fingadumbledore 2022-12-10 15:23:04 +01:00
parent 4f1c11df5c
commit eb94792c4e
2 changed files with 3 additions and 1 deletions

View File

@ -210,7 +210,8 @@ def session(id):
cur = con.cursor()
l = f"SELECT eventzeit FROM planer WHERE sessionID = \'{id}\' ORDER BY eventzeit;"
eventzeit = cur.execute(l).fetchall()
#eventtime = re.split(",", eventzeit)
print (eventzeit)
#eventtime = re.split(',', eventzeit)
con.commit()
cur.close()

View File

@ -37,4 +37,5 @@ stop.onclick = function() {
reset.onclick = function() {
h1.textContent = "00:00:00";
seconds = 0; minutes = 0; hours = 0;
sec = 0; min = 0; hrs = 0;
}