Changeset 2704

Show
Ignore:
Timestamp:
10/25/07 06:32:29 (1 year ago)
Author:
coling
Message:

Overwrite options just in case. Not really needed... but safe all the same.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • clientsplugin/0.11/clients/client.py

    r2703 r2704  
    99from genshi.filters.transform import Transformer  
    1010 
    11 #from util import * 
    1211from clients import model 
    1312 
     
    2625                if 'client' == field['name']: 
    2726                    field['type'] = 'select' 
     27                    field['options'] = [] 
    2828                    for client in model.Client.select(self.env): 
    2929                        field['options'].append(client.name)