diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-08-05 22:46:45 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-08-05 22:48:00 -0300 |
commit | 259418f8275371fc2f0bab6892caa4ef66b84240 (patch) | |
tree | 721e21ff566212918bf837f45c7687ce32213032 /methods.py | |
parent | 6d5d23fa8de8673f4a2b312c05588fd4e7195543 (diff) |
VisualScript can now execute visual scripts, but there is no debugger or profiler yet.
Diffstat (limited to 'methods.py')
-rwxr-xr-x | methods.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/methods.py b/methods.py index 74c282b8cf..e29fd760ba 100755 --- a/methods.py +++ b/methods.py @@ -1213,7 +1213,9 @@ def detect_modules(): register_cpp="" unregister_cpp="" - for x in glob.glob("modules/*"): + files = glob.glob("modules/*") + files.sort() #so register_module_types does not change that often, and also plugins are registered in alphabetic order + for x in files: if (not os.path.isdir(x)): continue x=x.replace("modules/","") # rest of world |