Skip to content
Snippets Groups Projects
Commit bb084769 authored by Andrea Callia D'Iddio's avatar Andrea Callia D'Iddio
Browse files

Fix leading zeros problem.

parent 3def84a1
No related branches found
No related tags found
No related merge requests found
Pipeline #353770 passed
......@@ -3,5 +3,5 @@ from datetime import datetime
STUDENT = "student"
STAFF = "staff"
DEADLINE_FOR_STUDENT_CHANGES = datetime(2023, 02, 09, 19, 0)
DEADLINE_FOR_STAFF_CHANGES = datetime(2023, 02, 09, 19, 0)
DEADLINE_FOR_STUDENT_CHANGES = datetime(2023, 2, 9, 19, 0)
DEADLINE_FOR_STAFF_CHANGES = datetime(2023, 2, 9, 19, 0)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment