Changeset 1075 for pykota/trunk
- Timestamp:
- 07/07/03 14:51:07 (21 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/pykota/storages/ldapstorage.py
r1070 r1075 21 21 # 22 22 # $Log$ 23 # Revision 1.17 2003/07/07 12:51:07 jalet 24 # Small fix 25 # 23 26 # Revision 1.16 2003/07/07 12:11:13 jalet 24 27 # Small fix … … 238 241 group.Members = self.getGroupMembers(group) 239 242 for member in group.Members : 240 group.AccountBalance += member.AccountBalance 241 group.LifeTimePaid += member.LifeTimePaid 243 if member.Exists : 244 group.AccountBalance += member.AccountBalance 245 group.LifeTimePaid += member.LifeTimePaid 242 246 group.Exists = 1 243 247 return group