Show
Ignore:
Timestamp:
02/07/03 09:34:16 (21 years ago)
Author:
jalet
Message:

Test wrt date limit was wrong

Files:
1 modified

Legend:

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

    r729 r733  
    1515# 
    1616# $Log$ 
     17# Revision 1.13  2003/02/07 08:34:16  jalet 
     18# Test wrt date limit was wrong 
     19# 
    1720# Revision 1.12  2003/02/06 23:20:02  jalet 
    1821# warnpykota doesn't need any user/group name argument, mimicing the 
     
    177180    def checkUserPQuota(self, username, printername) : 
    178181        """Checks the user quota on a printer and deny or accept the job.""" 
    179         now = DateTime.now() 
    180182        quota = self.storage.getUserPQuota(username, printername) 
    181183        if quota is None : 
     
    199201                    action = "ALLOW" 
    200202                elif hardlimit is not None : 
    201                      gracedelay = self.config.getGraceDelay() 
    202203                     if softlimit <= pagecounter < hardlimit :     
     204                         now = DateTime.now() 
    203205                         if datelimit is None : 
    204                              datelimit = now + gracedelay 
     206                             datelimit = now + self.config.getGraceDelay() 
    205207                             self.storage.setDateLimit(username, printername, datelimit) 
    206                          if (now + gracedelay) < datelimit : 
     208                         if now < datelimit : 
    207209                             action = "WARN" 
    208210                         else :