Changeset 1321
- Timestamp:
- 01/30/04 17:35:03 (21 years ago)
- Location:
- pykota/trunk
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/cupspykota
r1302 r1321 24 24 # 25 25 # $Log$ 26 # Revision 1.26 2004/01/30 16:35:03 jalet 27 # Fixes stupid software accounting bug in CUPS backend 28 # 26 29 # Revision 1.25 2004/01/16 17:51:46 jalet 27 30 # Fuck Fuck Fuck !!! … … 214 217 215 218 # retrieve the job size 216 jobsize = self.accounter.getJobSize() 219 if action == "DENY" : 220 jobsize = 0 221 self.logdebug("Job size forced to 0 because printing is denied.") 222 else : 223 jobsize = self.accounter.getJobSize() 217 224 self.logdebug("Job size : %i" % jobsize) 218 225 -
pykota/trunk/NEWS
r1318 r1321 22 22 PyKota NEWS : 23 23 24 - 1.17alpha2 : 25 26 - Fix stupid software accounting bug in the CUPS backend. 27 24 28 - 1.17alpha1 : 25 29 -
pykota/trunk/pykota/version.py
r1318 r1321 22 22 # 23 23 24 __version__ = "1.17alpha 1_unofficial"24 __version__ = "1.17alpha2_unofficial" 25 25 26 26 __doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng."""