18:19:07.885 T:2804 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<-- - NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS! Error Type: Error Contents: name 'new_datetime' is not defined Traceback (most recent call last): File "C:\Users\theater1\AppData\Roaming\Kodi\addons\plugin.video.cbs\default.py", line 23, in from resources.lib import cbs File "C:\Users\theater1\AppData\Roaming\Kodi\addons\plugin.video.cbs\resources\lib\cbs.py", line 277, in elif mode == 2: CBS().browseShows(url) File "C:\Users\theater1\AppData\Roaming\Kodi\addons\plugin.video.cbs\resources\lib\cbs.py", line 76, in __init__ self.cache = SimpleCache() File "C:\Users\theater1\AppData\Roaming\Kodi\addons\script.module.simplecache\lib\simplecache.py", line 32, in __init__ self.check_cleanup() File "C:\Users\theater1\AppData\Roaming\Kodi\addons\script.module.simplecache\lib\simplecache.py", line 141, in check_cleanup elif (eval(lastexecuted) + self.auto_clean_interval) < cur_time: File "", line 1, in NameError: name 'new_datetime' is not defined -->End of Python script error report<-- def check_cleanup(self): '''check if cleanup is needed''' cur_time = datetime.datetime.now() lastexecuted = self.win.getProperty("simplecache.clean.lastexecuted") if not lastexecuted: self.win.setProperty("simplecache.clean.lastexecuted", repr(cur_time)) elif (eval(lastexecuted) + self.auto_clean_interval) < cur_time: # cleanup needed... self.do_cleanup()