Changeset 1713 for pykota/trunk/bin
- Timestamp:
- 09/13/04 18:02:45 (20 years ago)
- Location:
- pykota/trunk/bin
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/cupspykota
r1704 r1713 24 24 # 25 25 # $Log$ 26 # Revision 1.72 2004/09/13 16:02:44 jalet 27 # Added fix for incorrect job's size when hardware accounting fails 28 # 26 29 # Revision 1.71 2004/09/06 17:05:06 jalet 27 30 # Fix for autodetection of SC_OPEN_MAX … … 439 442 self.printInfo(_("Job size forced to 0 because printing is denied.")) 440 443 else : 441 jobsize = self.accounter.getJobSize( )444 jobsize = self.accounter.getJobSize(printer) 442 445 self.printInfo(_("Job size : %i") % jobsize) 443 446 -
pykota/trunk/bin/lprngpykota
r1696 r1713 24 24 # 25 25 # $Log$ 26 # Revision 1.7 2004/09/13 16:02:44 jalet 27 # Added fix for incorrect job's size when hardware accounting fails 28 # 26 29 # Revision 1.6 2004/09/02 14:40:13 jalet 27 30 # Another bunch of LPRng fixes … … 141 144 if self.accounter.isSoftware : 142 145 self.accounter.endJob(printer) 143 jobsize = self.accounter.getJobSize( )146 jobsize = self.accounter.getJobSize(printer) 144 147 self.logdebug("Job accounting ends.") 145 148 … … 216 219 217 220 # retrieve the job size 218 jobsize = self.accounter.getJobSize( )221 jobsize = self.accounter.getJobSize(printer) 219 222 220 223 self.logdebug("Job size : %i" % jobsize)