Remove 'addons_extern' was used before git move

This commit is contained in:
Campbell Barton 2015-01-21 12:56:03 +11:00
parent 6b655ca62c
commit 88222fac63

@ -44,10 +44,6 @@ def paths():
# if folder addons_contrib/ exists, scripts in there will be loaded too # if folder addons_contrib/ exists, scripts in there will be loaded too
addon_paths += _bpy.utils.script_paths("addons_contrib") 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 return addon_paths
@ -148,7 +144,7 @@ def modules_refresh(module_cache=addons_fake_modules):
for path in path_list: for path in path_list:
# force all contrib addons to be 'TESTING' # force all contrib addons to be 'TESTING'
if path.endswith(("addons_contrib", "addons_extern")): if path.endswith(("addons_contrib", )):
force_support = 'TESTING' force_support = 'TESTING'
else: else:
force_support = None force_support = None