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>2012-04-04 18:39:52 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-04 18:39:52 +0400
commitc93c8bda3de90bb516f45b34531f07a8365a65d1 (patch)
treebacfbb94e44cadff55c030ea0c9f496df375747e /release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py
parent329c665c16fabc595910daaf5a9d9a82b167b20b (diff)
replace relative imports with absolute imports so scritps can be executed directly (live editing).
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py b/release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py
index e1e47c1e85f..04696c793a6 100644
--- a/release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py
+++ b/release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py
@@ -17,11 +17,10 @@
# ##### END GPL LICENSE BLOCK #####
# <pep8 compliant>
-
import bpy
from bpy.types import Panel
-from .properties_physics_common import (
+from bl_ui.properties_physics_common import (
point_cache_ui,
effector_weights_ui,
)