- Timestamp:
- 03/23/05 11:42:13 (20 years ago)
- Location:
- pykota/trunk
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/NEWS
r2179 r2180 24 24 - 1.22alpha3 : 25 25 26 - Fixes some problem for printers which directly go from 27 "idle" to "warmup" and never to "printing" before 28 returning to "idle". 29 26 30 - Some permissions settings may have prevented cupspykota 27 31 from parsing cupsd.conf, this is now fixed. -
pykota/trunk/pykota/accounters/hardware.py
r2178 r2180 122 122 self.retrieveSNMPValues() 123 123 statusAsString = printerStatusValues.get(self.printerStatus) 124 if statusAsString in ('printing', ) :124 if statusAsString in ('printing', 'warmup') : 125 125 break 126 126 self.parent.filter.logdebug(_("Waiting for printer %s to be printing...") % self.parent.filter.printername)