File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1515# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717#
18- # $Id: instance.py,v 1.7 2002-09-17 23:59:32 richard Exp $
18+ # $Id: instance.py,v 1.8 2002-09-18 00:02:13 richard Exp $
1919
2020__doc__ = '''
2121Tracker handling (open tracker).
2626
2727import imp , os
2828
29- class InstanceError (Exception ):
29+ class TrackerError (Exception ):
3030 pass
3131
3232class Opener :
@@ -54,7 +54,7 @@ def open(self, tracker_home):
5454 # ensure the tracker has all the required bits
5555 for required in 'config open init Client MailGW' .split ():
5656 if not hasattr (tracker , required ):
57- raise InstanceError , 'Required tracker attribute "%s" ' \
57+ raise TrackerError , 'Required tracker attribute "%s" ' \
5858 'missing' % required
5959
6060 return tracker
You can’t perform that action at this time.
0 commit comments