systempayv2: do not try to validate email fields, we suppose the caller knows better

This commit is contained in:
Benjamin Dauvergne 2012-11-23 09:46:43 +01:00
parent ef6a3a63b2
commit ed976c1deb
1 changed files with 0 additions and 3 deletions

View File

@ -73,9 +73,6 @@ class Parameter:
return value.replace('-','').isalnum()
elif self.ptype == 'an;':
return value.replace(';','').isalnum()
elif self.ptype == 'an@':
return value.replace('@','').isalnum()
# elif self.ptype == 'ans':
return True