Changeset 12483 for main/waeup.ikoba/trunk
- Timestamp:
- 18 Jan 2015, 08:07:54 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.ikoba/trunk/src/waeup/ikoba/customers/export.py
r12337 r12483 53 53 for customer in customers: 54 54 for contract in customer.get('contracts', {}).values(): 55 if contract.class_name== class_name:55 if getattr(contract, 'class_name', None) == class_name: 56 56 contracts.append(contract) 57 57 return contracts
Note: See TracChangeset for help on using the changeset viewer.