EmperorFool
Deity
Good job figuring that out.
Python has two methods of doing classes: those that extend object (as you did) and those that do not. You cannot use the super() function with those that do not. 
The other way to fix it in case you see this elsewhere (Civ4 doesn't use "object") is to call the superclass's construction (__init__) directly:
Using this method you must pass in "self" manually.


The other way to fix it in case you see this elsewhere (Civ4 doesn't use "object") is to call the superclass's construction (__init__) directly:
Code:
class CvCustomEventManager(CvEventManager):
def __init__(self, *args, **kwargs):
[B]CvEventManager.__init__(self[/B], *args, *kwargs)
Using this method you must pass in "self" manually.