diff -ur python.original/DirStartUp.py python/DirStartUp.py
--- python.original/DirStartUp.py	2005-10-08 14:18:53.000000000 +0200
+++ python/DirStartUp.py	2006-02-26 13:33:24.000000000 +0100
@@ -7,7 +7,7 @@
 
 # This is the list of Bacula daemon events that you
 #  can receive.
-class BaculaEvents:
+class BaculaEvents(object):
   def __init__(self):
      # Called here when a new Bacula Events class is
      #  is created. Normally not used 
@@ -43,7 +43,7 @@
 """
   There are the Job events that you can receive.
 """
-class JobEvents:
+class JobEvents(object):
   def __init__(self):
      # Called here when you instantiate the Job. Not
      # normally used
diff -ur python.original/FDStartUp.py python/FDStartUp.py
--- python.original/FDStartUp.py	2005-05-06 17:54:58.000000000 +0200
+++ python/FDStartUp.py	2006-02-26 13:33:40.000000000 +0100
@@ -6,7 +6,7 @@
 
 # This is the list of Bacula daemon events that you
 #  can receive.
-class BaculaEvents:
+class BaculaEvents(object):
   def __init__(self):
      # Called here when a new Bacula Events class is
      #  is created. Normally not used 
@@ -44,7 +44,7 @@
 """
   There are the Job events that you can receive.
 """
-class JobEvents:
+class JobEvents(object):
   def __init__(self):
      # Called here when you instantiate the Job. Not
      # normally used
diff -ur python.original/SDStartUp.py python/SDStartUp.py
--- python.original/SDStartUp.py	2005-05-06 17:54:58.000000000 +0200
+++ python/SDStartUp.py	2006-02-26 13:33:58.000000000 +0100
@@ -6,7 +6,7 @@
 
 # This is the list of Bacula daemon events that you
 #  can receive.
-class BaculaEvents:
+class BaculaEvents(object):
   def __init__(self):
      # Called here when a new Bacula Events class is
      #  is created. Normally not used 
@@ -45,7 +45,7 @@
 """
   There are the Job events that you can receive.
 """
-class JobEvents:
+class JobEvents(object):
   def __init__(self):
      # Called here when you instantiate the Job. Not
      # normally used
