[Bf-blender-cvs] [88222fa] master: Remove 'addons_extern' was used before git move

Campbell Barton noreply at git.blender.org
Wed Jan 21 03:01:10 CET 2015


Commit: 88222fac6388303f390a3c76016e3e1b63bf98c3
Author: Campbell Barton
Date:   Wed Jan 21 12:56:03 2015 +1100
Branches: master
https://developer.blender.org/rB88222fac6388303f390a3c76016e3e1b63bf98c3

Remove 'addons_extern' was used before git move

===================================================================

M	release/scripts/modules/addon_utils.py

===================================================================

diff --git a/release/scripts/modules/addon_utils.py b/release/scripts/modules/addon_utils.py
index 88356b6..ae9575e 100644
--- a/release/scripts/modules/addon_utils.py
+++ b/release/scripts/modules/addon_utils.py
@@ -44,10 +44,6 @@ def paths():
     # if folder addons_contrib/ exists, scripts in there will be loaded too
     addon_paths += _bpy.utils.script_paths("addons_contrib")
 
-    # EXTERN SCRIPTS: external projects scripts
-    # if folder addons_extern/ exists, scripts in there will be loaded too
-    addon_paths += _bpy.utils.script_paths("addons_extern")
-
     return addon_paths
 
 
@@ -148,7 +144,7 @@ def modules_refresh(module_cache=addons_fake_modules):
     for path in path_list:
 
         # force all contrib addons to be 'TESTING'
-        if path.endswith(("addons_contrib", "addons_extern")):
+        if path.endswith(("addons_contrib", )):
             force_support = 'TESTING'
         else:
             force_support = None




More information about the Bf-blender-cvs mailing list