Skip to content

Commit 21e57ff

Browse files
author
Richard Jones
committed
old habits...
1 parent ebcc910 commit 21e57ff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

roundup/instance.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
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__ = '''
2121
Tracker handling (open tracker).
@@ -26,7 +26,7 @@
2626

2727
import imp, os
2828

29-
class InstanceError(Exception):
29+
class TrackerError(Exception):
3030
pass
3131

3232
class 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

0 commit comments

Comments
 (0)