We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae918ec commit 88dffc6Copy full SHA for 88dffc6
vmupdate/agent/source/plugins/__init__.py
@@ -1,7 +1,7 @@
1
import importlib
2
import os.path
3
import glob
4
-modules = glob.glob(os.path.join(os.path.dirname(__file__), "*.py"))
+modules = sorted(glob.glob(os.path.join(os.path.dirname(__file__), "*.py")))
5
__all__ = [os.path.basename(f)[:-3]
6
for f in modules if os.path.isfile(f)
7
and not f.endswith('__init__.py')]
0 commit comments