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>2017-10-21 04:41:42 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-10-21 04:41:42 +0300
commitebb29200d3bf9460ff32100cc1ed6c436e206829 (patch)
treeaabbdb76914ca039b0c1bb60557b5ab47dfe5048 /release/scripts/startup/bl_ui/properties_object.py
parent3df2e6d76bc7cbbee9e95330a3045cb2c02791be (diff)
Cleanup: use relative imports in bl_ui
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_object.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_object.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/properties_object.py b/release/scripts/startup/bl_ui/properties_object.py
index 43c8300b558..f7c0617f525 100644
--- a/release/scripts/startup/bl_ui/properties_object.py
+++ b/release/scripts/startup/bl_ui/properties_object.py
@@ -323,10 +323,10 @@ class OBJECT_PT_duplication(ObjectButtonsPanel, Panel):
layout.prop(ob, "dupli_group", text="Group")
-from bl_ui.properties_animviz import (
- MotionPathButtonsPanel,
- OnionSkinButtonsPanel,
- )
+from .properties_animviz import (
+ MotionPathButtonsPanel,
+ OnionSkinButtonsPanel,
+)
class OBJECT_PT_motion_paths(MotionPathButtonsPanel, Panel):