summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xindex.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.py b/index.py
index 7b4a745..5362bd0 100755
--- a/index.py
+++ b/index.py
@@ -26,7 +26,7 @@ create_form = form.Form(
'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),
- form.Validator('A list with this name allready exists. Please choose another name.',
+ form.Validator('A list with this name already exists. Please choose another name.',
lambda name: list_exists(name) == False),
description = 'Name of your list'),