link_rel = u"subsection"
link_type = u"application/atom+xml"
- _book_parent_img = lazy(lambda: full_url(os.path.join(settings.STATIC_URL, "img/book-parent.png")))()
+ _book_parent_img = lazy(lambda: full_url(os.path.join(settings.STATIC_URL, "img/book-parent.png")), str)()
try:
_book_parent_img_size = unicode(os.path.getsize(os.path.join(settings.STATIC_ROOT, "img/book-parent.png")))
except:
_book_parent_img_size = ''
- _book_img = lazy(lambda: full_url(os.path.join(settings.STATIC_URL, "img/book.png")))()
+ _book_img = lazy(lambda: full_url(os.path.join(settings.STATIC_URL, "img/book.png")), str)()
try:
_book_img_size = unicode(os.path.getsize(os.path.join(settings.STATIC_ROOT, "img/book.png")))
except:
#
from django import forms
from django.contrib.sites.models import Site
+from django.core.exceptions import ValidationError
from django.core.mail import send_mail, mail_managers
from django.core.urlresolvers import reverse
from django.core.validators import validate_email
'description': description,
}, fail_silently=True)
- if validate_email(contact):
+ try:
+ validate_email(contact)
+ except ValidationError:
+ pass
+ else:
send_mail(u'[WolneLektury] ' +
ugettext(u'Thank you for your suggestion.'),
ugettext(u"""\
'audiobooks': audiobooks,
}, fail_silently=True)
- if validate_email(contact):
+ try:
+ validate_email(contact)
+ except ValidationError:
+ pass
+ else:
send_mail(u'[WolneLektury] ' +
ugettext(u'Thank you for your suggestion.'),
ugettext(u"""\