Changeset 6096


Ignore:
Timestamp:
15 May 2011, 01:21:59 (13 years ago)
Author:
uli
Message:

Fix trailing whitespaces.
Cut overlong lines.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/applicants/interfaces.py

    r6087 r6096  
    160160        readonly = True,
    161161        )
    162        
     162
    163163    title = schema.TextLine(
    164164        title = u'Title',
     
    166166        default = u'-',
    167167        readonly = True,
    168         )       
    169        
     168        )
     169
    170170    prefix = schema.Choice(
    171171        title = u'Application target',
     
    182182        source = FutureYearsSource(),
    183183        readonly = True,
    184         )               
     184        )
    185185
    186186    provider = schema.Choice(
     
    263263        source = FutureYearsSource(),
    264264        readonly = False,
    265         )               
     265        )
    266266
    267267    provider = schema.Choice(
     
    273273        )
    274274
    275 IApplicantsContainerAdd['prefix'].order =  IApplicantsContainer['prefix'].order
    276 IApplicantsContainerAdd['year'].order =  IApplicantsContainer['year'].order
    277 IApplicantsContainerAdd['provider'].order =  IApplicantsContainer['provider'].order
     275IApplicantsContainerAdd[
     276    'prefix'].order =  IApplicantsContainer['prefix'].order
     277IApplicantsContainerAdd[
     278    'year'].order =  IApplicantsContainer['year'].order
     279IApplicantsContainerAdd[
     280    'provider'].order =  IApplicantsContainer['provider'].order
    278281
    279282class IApplicantBaseData(IWAeUPObject):
Note: See TracChangeset for help on using the changeset viewer.