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

pkusers now supports the --email command line option.

Files:
1 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