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:
authorCampbell Barton <ideasman42@gmail.com>2019-03-17 13:13:25 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-17 13:14:43 +0300
commit69bf4e5e36754afbd3a42778e12613b77ae98023 (patch)
tree0df83b1927037bf711881dbfb6ff6e95a901c511 /release/scripts/modules/addon_utils.py
parentad9addbf460f6053b8037a09ec9752d653269561 (diff)
Cleanup: unused variables
Diffstat (limited to 'release/scripts/modules/addon_utils.py')
-rw-r--r--release/scripts/modules/addon_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/modules/addon_utils.py b/release/scripts/modules/addon_utils.py
index 4e7c278f196..f2e799f1760 100644
--- a/release/scripts/modules/addon_utils.py
+++ b/release/scripts/modules/addon_utils.py
@@ -470,7 +470,7 @@ def reset_all(*, reload_scripts=False):
for path in paths_list:
_bpy.utils._sys_path_ensure(path)
- for mod_name, mod_path in _bpy.path.module_names(path):
+ for mod_name, _mod_path in _bpy.path.module_names(path):
is_enabled, is_loaded = check(mod_name)
# first check if reload is needed before changing state.