Changeset 3124 for pykota/trunk/bin/cupspykota
- Timestamp:
- 12/13/06 20:51:10 (18 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/cupspykota
r3123 r3124 827 827 self.UserPQuota.incDenyBannerCounter() # increments the warning counter 828 828 self.exportUserInfo() 829 getattr(self, "%sBanner" % bannertype)(withaccounting) 829 if (self.Action == 'CANCEL' and not self.config.getPrintCancelledBanners()) : 830 self.logdebug("Print job cancelled, not printing a banner.", "warn") 831 else : 832 getattr(self, "%sBanner" % bannertype)(withaccounting) 830 833 self.logdebug("%s banner done." % bannertype.title()) 831 834