- Timestamp:
- 04/05/05 10:26:00 (20 years ago)
- Location:
- tea4cups/trunk
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
tea4cups/trunk/NEWS
r615 r625 22 22 Tea4CUPS News : 23 23 24 * 2.11 : 25 26 - Ignores errors in posthooks because the job was probably 27 successfully printed so no need to stop the print queue. 28 We log a warning instead in this case. 29 24 30 * 2.10 : 25 31 -
tea4cups/trunk/tea4cups
r624 r625 37 37 from struct import unpack 38 38 39 version = "2.1 0_unofficial"39 version = "2.11_unofficial" 40 40 41 41 class TeeError(Exception): … … 543 543 status = self.runCommands(branchtype, branches, serialize) 544 544 if status : 545 exitcode = status 545 if branchtype != "posthook" : 546 exitcode = status 547 else : 548 # we just ignore error in posthooks 549 self.logInfo("An error occured during the execution of posthooks.", "warn") 546 550 if (branchtype == "prehook") and self.isCancelled : 547 551 break # We don't want to execute tees or posthooks in this case