Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2019-08-01 13:26:21 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-08-01 13:52:52 +0300
commit4b37abd61f8e4164f3f34fffa7140414dffa7a49 (patch)
tree6aa69d49f47ab53d911089e3d0f26c3a78efa308 /release/scripts/modules/bl_i18n_utils/utils.py
parent5fde4494f6542739ec4184312d0a937c500e0595 (diff)
Cleanup a bit i18n message extraction code.
Diffstat (limited to 'release/scripts/modules/bl_i18n_utils/utils.py')
-rw-r--r--release/scripts/modules/bl_i18n_utils/utils.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/release/scripts/modules/bl_i18n_utils/utils.py b/release/scripts/modules/bl_i18n_utils/utils.py
index 13758b4f45c..bbc0c5c8405 100644
--- a/release/scripts/modules/bl_i18n_utils/utils.py
+++ b/release/scripts/modules/bl_i18n_utils/utils.py
@@ -180,9 +180,8 @@ def enable_addons(addons=None, support=None, disable=False, check_only=False):
prefs = bpy.context.preferences
used_ext = {ext.module for ext in prefs.addons}
- # XXX TEMP WORKAROUND
- black_list = {"space_view3d_math_vis",
- "object_scatter"}
+ # In case we need to blacklist some add-ons...
+ black_list = {}
ret = [
mod for mod in addon_utils.modules()