diff options
author | root <root@viserion.(none)> | 2013-04-11 16:18:12 +0000 |
---|---|---|
committer | root <root@viserion.(none)> | 2013-04-11 16:18:12 +0000 |
commit | ee49f194c1659df01e0d26d634e13b13614b1683 (patch) | |
tree | 1bdc68eac5c81c5bfafe287a659266ee8ad33d69 /ishtar_common/forms.py | |
parent | 6235aa64139d746b4d5d8c5afdaecef8a40196e3 (diff) | |
parent | b8df763695252dd9c6ba7e98ca7b23991f77aea1 (diff) | |
download | Ishtar-ee49f194c1659df01e0d26d634e13b13614b1683.tar.bz2 Ishtar-ee49f194c1659df01e0d26d634e13b13614b1683.zip |
Merge branch 'master' of lysithea.proxience.net:/home/proxience/git/ishtar
Diffstat (limited to 'ishtar_common/forms.py')
-rw-r--r-- | ishtar_common/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/forms.py b/ishtar_common/forms.py index cb007442e..4477213c9 100644 --- a/ishtar_common/forms.py +++ b/ishtar_common/forms.py @@ -59,7 +59,7 @@ import widgets reverse_lazy = lazy(reverse, unicode) -regexp_name = re.compile(r'^[\w\- ]+$', re.UNICODE) +regexp_name = re.compile(r"^[,:/\w\-'\"() \&\[\]@]+$", re.UNICODE) name_validator = validators.RegexValidator(regexp_name, _(u"Enter a valid name consisting of letters, spaces and hyphens."), 'invalid') |