From b90a4d01f2f17845af7e6a70f5b0e3af2289396f Mon Sep 17 00:00:00 2001
From: glen smith <2751-gs675@users.noreply.gitlab.cci.drexel.edu>
Date: Thu, 6 Oct 2022 19:33:37 +0000
Subject: [PATCH] Updated format string in DataShopLogger to use uppercase %S
---
tutorenvs/utils.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tutorenvs/utils.py b/tutorenvs/utils.py
index c03b475..c74232c 100644
--- a/tutorenvs/utils.py
+++ b/tutorenvs/utils.py
@@ -68,7 +68,7 @@ class DataShopLogger():
if not os.path.exists("log/"):
os.mkdir("log/")
self.filename = "log/" + domain + "_" + time.strftime(
- "%Y-%m-%d-%H-%M-%s") + ".txt"
+ "%Y-%m-%d-%H-%M-%S") + ".txt"
headers = [
'Anon Student Id', 'Session Id', 'Transaction Id', 'Time',
--
GitLab