JD-pyprocgame
JD-pyprocgame copied to clipboard
Recursive save_settings
save_settings calls itself with the wrong number of arguments. It should call super instead.
def save_settings(self):
self.save_settings(settings_path)
should be
def save_settings(self):
super(JDGame, self).save_settings(settings_path)