Merge branch 'development' of github.com:Rushilwiz/SkoolOS into development

This commit is contained in:
Nathaniel Kenschaft 2020-06-16 14:42:32 -04:00
commit a9ee300708
5 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,9 @@
# SkoolOS
Revolutionizing the interface between students and teachers through one easy service
[![Documentation Status](https://readthedocs.org/projects/skoolos/badge/?version=latest)](https://skoolos.readthedocs.io/en/latest/?badge=latest)
![Read the Docs](https://img.shields.io/readthedocs/skoolos?color=FF6663)
![GitHub language count](https://img.shields.io/github/languages/count/rushilwiz/SkoolOS?color=FEB144)
![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/rushilwiz/SkoolOS?color=FAFD7B)
![GitHub repo size](https://img.shields.io/github/repo-size/rushilwiz/SkooloS?color=9EE09E)
![GitHub](https://img.shields.io/github/license/rushilwiz/SkoolOS?color=9EC1CF)
![GitHub last commit](https://img.shields.io/github/last-commit/rushilwiz/SkoolOS?color=CC99C9)

View File

@ -230,7 +230,9 @@ def teacherCLI(user, password):
]
ass = prompt(questions)['assignment']
apath = teacher.username + "/" + course + "/" + ass
due = input("Enter due date (Example: 2020-08-11 16:58): ")
due = due + ":00.000000"
due = due.strip()
teacher.addAssignment(apath, course, due)