Changeset 1563
- Timestamp:
- 06/23/04 15:03:28 (20 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/pykota/tool.py
r1562 r1563 22 22 # 23 23 # $Log$ 24 # Revision 1.107 2004/06/23 13:03:28 jalet 25 # Catches accounter configuration errors earlier 26 # 24 27 # Revision 1.106 2004/06/22 09:31:18 jalet 25 28 # Always send some debug info to CUPS' back channel stream (stderr) as … … 906 909 try : 907 910 self.accounter = accounter.openAccounter(self) 908 except accounter.PyKotaAccounterError, msg :911 except (config.PyKotaConfigError, accounter.PyKotaAccounterError), msg : 909 912 self.crashed(msg) 910 913 raise