Ignore:
Timestamp:
Sep 11, 2012 7:30:25 AM (12 years ago)
Author:
ktarasz
Message:

fix pep8

File:
1 edited

Legend:

Unmodified
Added
Removed
  • quintagroup.seoptimizer/trunk/quintagroup/seoptimizer/browser/seo_configlet.py

    r3542 r3547  
    3131    exposeDCMetaTags = Bool( 
    3232        title=_("label_exposeDCMetaTags", 
    33                 default='Expose <abbr title="Dublin Core">DC</abbr> ' \ 
     33                default='Expose <abbr title="Dublin Core">DC</abbr> ' 
    3434                'meta tags'), 
    3535        description=_("description_seo_dc_metatags", 
     
    5353        title=_("label_content_type_title", default='Content Types'), 
    5454        description=_("description_seo_content_types", 
    55             default='Select content types that will have SEO properties ' 
    56                 'enabled.'), 
     55                      default='Select content types that will have SEO ' 
     56                      'properties enabled.'), 
    5757        required=False, 
    5858        missing_value=tuple(), 
     
    6464                default='Default custom metatags.'), 
    6565        description=_("help_default_custom_metatags", 
    66                       default='Fill in custom metatag names (one per line) ' \ 
    67                       'which will appear on qseo_properties edit tab. ' \ 
     66                      default='Fill in custom metatag names (one per line) ' 
     67                      'which will appear on qseo_properties edit tab. ' 
    6868                      'Example: "metaname|metacontent" or "metaname".'), 
    6969        required=False) 
     
    7474        title=_("label_custom_script", default=u'Header JavaScript'), 
    7575        description=_("help_custom_script", 
    76                 default=u"This JavaScript code will be included in " 
    77                          "the rendered HTML as entered in the page header."), 
     76                      default=u"This JavaScript code will be included in " 
     77                      "the rendered HTML as entered in the page header."), 
    7878        default=u'', 
    7979        required=False) 
     
    9898                default='External keywords check'), 
    9999        description=_("description_external_keywords_test", 
    100                 default='Make keywords test by opening context url as ' 
    101                     'external resource with urllib2.openurl(). This is ' 
    102                     'useful when xdv/Deliverance transformation is used ' 
    103                     'on the site.'), 
     100                      default='Make keywords test by opening context url as ' 
     101                      'external resource with urllib2.openurl(). This is ' 
     102                      'useful when xdv/Deliverance transformation is used ' 
     103                      'on the site.'), 
    104104        default=False, 
    105105        required=False) 
     
    174174    def _toFormValue(self, value): 
    175175        if value == self.context.missing_value or \ 
    176            value == self.context._type(): 
     176                value == self.context._type(): 
    177177            return self._missing 
    178178        else: 
Note: See TracChangeset for help on using the changeset viewer.