From a9bc1a5cb2e3bdf8301dbe81bbcd99b09d57b409 Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Thu, 3 Nov 2011 11:47:54 +0100 Subject: added _ to valid chars like the error message suggests --- index.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.py b/index.py index 3a60aa2..284fee9 100755 --- a/index.py +++ b/index.py @@ -22,7 +22,7 @@ app = web.application(urls, globals(), autoreload=False) create_form = form.Form( form.Textbox('name', form.notnull, - form.regexp(r'^[a-zA-Z0-9+.-]{2,}$', 'This name should least be two characters long ' + + form.regexp(r'^[a-zA-Z0-9+.-_]{2,}$', 'This name should least be two characters long ' + 'and may only consist of letters, digits, plus (+), minus (-), and underlines (_).'), form.Validator('This name ends with a reserved suffix. Please choose another name.', util.validate_listname), -- cgit v1.2.3-1-g7c22