I need to force the loading order of plugins. We could use folder naming to provide such order, but os.listdir won't sort by name by itself.
Simply replacing os.listdir(self.plugin_folder) with sorted(os.listdir(self.plugin_folder)) on line 298 would do the trick.