Ignore:
Timestamp:
Apr 19, 2011 9:00:56 AM (13 years ago)
Author:
zidane
Message:

fixes pyflakes

File:
1 edited

Legend:

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

    r3134 r3141  
    245245        """ Set seo custom metatags properties. 
    246246        """ 
    247         context = aq_inner(self.context) 
     247        aq_inner(self.context) 
    248248        for tag in custommetatags: 
    249249            self.setProperty('%s%s' % (PROP_CUSTOM_PREFIX, tag['meta_name']), 
     
    291291            of name:value pairs {'foo':6} or passing name=value parameters. 
    292292        """ 
    293         context = aq_inner(self.context) 
     293        aq_inner(self.context) 
    294294        self.delAllSEOCustomMetaTagsProperties() 
    295295        if kw.get('seo_custommetatags_override'): 
     
    354354        """ Checks visibility 'SEO Properties' action for content 
    355355        """ 
    356         context = aq_inner(self.context) 
     356        aq_inner(self.context) 
    357357        plone = queryMultiAdapter((self, self.request), 
    358358                                  name="plone_portal_state").portal() 
Note: See TracChangeset for help on using the changeset viewer.