Changeset 1043 for pykota/trunk/pykota

Show
Ignore:
Timestamp:
06/25/03 21:52:31 (21 years ago)
Author:
jalet
Message:

Should be ready for testing :-)

Location:
pykota/trunk/pykota
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/storage.py

    r1042 r1043  
    2121# 
    2222# $Log$ 
     23# Revision 1.16  2003/06/25 19:52:31  jalet 
     24# Should be ready for testing :-) 
     25# 
    2326# Revision 1.15  2003/06/25 14:10:58  jalet 
    2427# Exception raising for now. 
     
    115118    def setAccountBalance(self, balance, lifetimepaid) :     
    116119        """Sets the user's account balance in case he pays more money.""" 
    117         raise PyKotaStorageError, "Not implemented." 
     120        self.parent.writeUserAccountBalance(self, balance, lifetimepaid) 
     121        self.AccountBalance = balance 
     122        self.LifeTimePaid = lifetimepaid 
    118123         
    119124    def setLimitBy(self, limitby) :     
  • pykota/trunk/pykota/version.py

    r1030 r1043  
    2121# 
    2222 
    23 __version__ = "1.09alpha2_unofficial" 
     23__version__ = "1.09beta_unofficial" 
    2424 
    2525__doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng."""