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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Lovato <nathan@gdquest.com>2020-05-16 23:12:40 +0300
committerDalai Felinto <dalai@blender.org>2020-05-29 10:53:47 +0300
commit2d417f1fa03612c5de34b6c216190e8e10f1be59 (patch)
tree51faeeeaa77d047602afca62b6ab7fb3f085eb37
parent11f5d25cd824c5a57afab9c565e74a93961ffdb6 (diff)
Power Sequencer: fix wrong package name causing test error
-rw-r--r--power_sequencer/tools/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/power_sequencer/tools/__init__.py b/power_sequencer/tools/__init__.py
index 4c0e75ca..463c3762 100644
--- a/power_sequencer/tools/__init__.py
+++ b/power_sequencer/tools/__init__.py
@@ -27,7 +27,7 @@ def get_tool_classes():
module_paths = ["." + os.path.splitext(f)[0] for f in module_files]
classes = []
for path in module_paths:
- module = importlib.import_module(path, package="blender_power_sequencer.tools")
+ module = importlib.import_module(path, package="power_sequencer.tools")
tool_names = [entry for entry in dir(module) if entry.startswith("POWER_SEQUENCER_TOOL")]
classes.extend([getattr(module, name) for name in tool_names])
return classes