Hi everyone. First, sorry for my english. Well, I'm using the validator IS_UPLOAD_FILENAME, in this way:
form = SQLFORM.factory(Field('novedad', 'upload',
requires=IS_UPLOAD_FILENAME(filename='novedad')))
The file I'm trying to upload is called "NOVEDAD.SEQ"
If I try to upload the file "anythingNOVEDAD.SEQ", the validator works
fine.
But if I try to upload the file "NOVEDADanything.SEQ", the validator
doesn't work, and let the validation pass...

