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
committerNathan Lovato <nathan@gdquest.com>2020-05-16 23:12:40 +0300
commita02d32dff4ba8347353074ad13fd64ee3ac3bb31 (patch)
tree5102ff9e78b060f42107cc215c386861b1a893f8 /power_sequencer
parent93a8e7eaca43e793de734c9acdeefe5926cb39fd (diff)
Power Sequencer: fix wrong package name causing test error
Diffstat (limited to 'power_sequencer')
-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