Ignore:
Timestamp:
Apr 18, 2011 11:16:39 AM (13 years ago)
Author:
vmaksymiv
Message:

pep8 fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • quintagroup.captcha.core/trunk/quintagroup/captcha/core/CaptchaTool.py

    r2180 r3128  
    55from AccessControl import ClassSecurityInfo 
    66from Products.Transience.Transience import TransientObjectContainer 
     7 
    78 
    89class CaptchaTool(TransientObjectContainer): 
     
    1314    security.declarePublic('addExpiredKey') 
    1415 
    15     def __init__(self, id='portal_captchas', title='', timeout_mins=60, addNotification=None, 
     16    def __init__(self, id='portal_captchas', title='', 
     17                 timeout_mins=60, addNotification=None, 
    1618                 delNotification=None, limit=0, period_secs=60): 
    17         TransientObjectContainer.__init__(self, id, title, timeout_mins, addNotification, 
    18                                           delNotification, limit, period_secs) 
     19        TransientObjectContainer.__init__(self, id, title, timeout_mins, 
     20                                          addNotification, delNotification, 
     21                                          limit, period_secs) 
    1922 
    2023    def addExpiredKey(self, key): 
Note: See TracChangeset for help on using the changeset viewer.