Changeset 2937 for pykota/trunk/pykota

Show
Ignore:
Timestamp:
06/13/06 23:10:15 (18 years ago)
Author:
jerome
Message:

pkusers now supports the --email command line option.

Location:
pykota/trunk/pykota
Files:
2 modified

Legend:

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

    r2880 r2937  
    104104        """Sets the user's overcharging coefficient.""" 
    105105        self.OverCharge = factor 
     106        self.isDirty = True 
     107         
     108    def setEmail(self, email) :     
     109        """Sets the user's email address.""" 
     110        self.Email = email 
    106111        self.isDirty = True 
    107112         
  • pykota/trunk/pykota/version.py

    r2919 r2937  
    2222# 
    2323 
    24 __version__ = "1.25alpha6_unofficial" 
     24__version__ = "1.25alpha7_unofficial" 
    2525 
    2626__doc__ = "PyKota : a complete Printing Quota Solution for CUPS."