Changeset 757

Show
Ignore:
Timestamp:
02/08/03 10:39:20 (21 years ago)
Author:
jalet
Message:

typos

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/bin/edpykota

    r756 r757  
    1717# 
    1818# $Log$ 
     19# Revision 1.10  2003/02/08 09:39:20  jalet 
     20# typos 
     21# 
    1922# Revision 1.9  2003/02/08 09:38:06  jalet 
    2023# Badly placed test 
     
    173176                    prototype = self.storage.getGroupPQuota(options["prototype"], printer) 
    174177                if prototype is None : 
    175                     self.logger.message("Prototype %s not found in Quota Storage for printer %s." % (options["prototype"], printer)) 
     178                    self.logger.log_message("Prototype %s not found in Quota Storage for printer %s." % (options["prototype"], printer)) 
    176179                    continue    # skip this printer 
    177180                else :     
     
    179182            if hardlimit is None :     
    180183                hardlimit = softlimit 
    181                 self.logger.message("Undefined hard limit set to %i on printer %s." % (hardlimit, printer)) 
     184                self.logger.log_message("Undefined hard limit set to %i on printer %s." % (hardlimit, printer)) 
    182185            if softlimit is None :     
    183186                softlimit = hardlimit 
    184                 self.logger.message("Undefined soft limit set to %i on printer %s." % (softlimit, printer)) 
     187                self.logger.log_message("Undefined soft limit set to %i on printer %s." % (softlimit, printer)) 
    185188            if (hardlimit is None) or (softlimit is None) :         
    186189                raise PyKotaToolError, "Both hard and soft limits must be set !  Aborting."