JD-pyprocgame icon indicating copy to clipboard operation
JD-pyprocgame copied to clipboard

Recursive save_settings

Open clempo2 opened this issue 3 years ago • 0 comments

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)    

clempo2 avatar Oct 24 '21 01:10 clempo2