Changeset 2887 in products for quintagroup.plonecomments


Ignore:
Timestamp:
Oct 19, 2010 1:54:26 PM (14 years ago)
Author:
kroman0
Message:

changes for pep8

File:
1 edited

Legend:

Unmodified
Added
Removed
  • quintagroup.plonecomments/branches/jquery/quintagroup/plonecomments/utils.py

    r2753 r2887  
    136136        subject = translate(_(u"approve_user_notification_subject", 
    137137            default=u"Your comment on ${title} is now published", 
    138             mapping={u"title": safe_unicode(getParent(context).title_or_id())}), 
     138            mapping={u"title": 
     139                safe_unicode(getParent(context).title_or_id())}), 
    139140            context=context.REQUEST) 
    140141        if user_email: 
     
    151152        subject = translate(_(u"rejected_user_notification_subject", 
    152153            default=u"Your comment on ${title} was not approved", 
    153             mapping={u"title": safe_unicode(getParent(context).title_or_id())}), 
     154            mapping={u"title": 
     155                safe_unicode(getParent(context).title_or_id())}), 
    154156            context=context.REQUEST) 
    155157        if user_email: 
     
    167169        subject = translate(_(u"reply_user_notification_subject", 
    168170            default=u"Someone replied to your comment on ${title}", 
    169             mapping={u"title": safe_unicode(getParent(context).title_or_id())}), 
     171            mapping={u"title": 
     172                safe_unicode(getParent(context).title_or_id())}), 
    170173            context=context.REQUEST) 
    171174        di_parrent = getDIParent(reply) 
Note: See TracChangeset for help on using the changeset viewer.