Show
Ignore:
Timestamp:
07/07/03 14:51:07 (21 years ago)
Author:
jalet
Message:

Small fix

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/storages/ldapstorage.py

    r1070 r1075  
    2121# 
    2222# $Log$ 
     23# Revision 1.17  2003/07/07 12:51:07  jalet 
     24# Small fix 
     25# 
    2326# Revision 1.16  2003/07/07 12:11:13  jalet 
    2427# Small fix 
     
    238241            group.Members = self.getGroupMembers(group) 
    239242            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 
    242246            group.Exists = 1 
    243247        return group