fix typo
This commit is contained in:
parent
004b1a1c37
commit
a2ec1aeebd
@ -29,7 +29,7 @@ def addtask():
|
||||
username = request.form['username']
|
||||
# Input sanitation
|
||||
# Task name
|
||||
if not taskname.printable() or ("<" in taskname and ">" in taskname):
|
||||
if not taskname.isprintable() or ("<" in taskname and ">" in taskname):
|
||||
return render_template('pages/response.html', response = "Task name has to be made only of letters or numbers.")
|
||||
if len(taskname) < 1 or len(taskname) > 40:
|
||||
return render_template('pages/response.html', response = "Task name lenght invalid, only smaller then 40 charachters allowed")
|
||||
|
Loading…
Reference in New Issue
Block a user