On 13/01/2012 17:02, Νικόλαος Κούρας wrote:
# get some enviromental values
form = cgi.FieldStorage()
mail = form.getvalue('mail') or ''
comment = form.getvalue('comment') or ''

        # insert guest comments into database if form was submitted
        if '@' in mail and comment not in ("Ρωτήστε με σχετικά..."):

[snip]

Do you really want to look for the comment in that string instead of
looking for that string in the comment?
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to