[Bf-extensions-cvs] [bce307a] master: Fixed broken import in space_view3d_cursor_control addon

Sybren A. Stüvel noreply at git.blender.org
Fri Mar 6 11:41:57 CET 2015


Commit: bce307a0e6ff16eeff216d30e93a084763b99cfb
Author: Sybren A. Stüvel
Date:   Fri Mar 6 11:38:57 2015 +0100
Branches: master
https://developer.blender.org/rBACbce307a0e6ff16eeff216d30e93a084763b99cfb

Fixed broken import in space_view3d_cursor_control addon

Some modules (like cursor_utils) have been moved into the
space_view3d_cursor_control addon (see commit
7590421902cba29e6147985678a2a1da510a845c), but were still imported
from their old location.

===================================================================

M	space_view3d_cursor_control/memory.py

===================================================================

diff --git a/space_view3d_cursor_control/memory.py b/space_view3d_cursor_control/memory.py
index 9b59313..d060c48 100644
--- a/space_view3d_cursor_control/memory.py
+++ b/space_view3d_cursor_control/memory.py
@@ -51,10 +51,10 @@ import bgl
 import math
 from mathutils import Vector, Matrix
 from mathutils import geometry
-from misc_utils import *
-from constants_utils import *
-from cursor_utils import *
-from ui_utils import *
+from .misc_utils import *
+from .constants_utils import *
+from .cursor_utils import *
+from .ui_utils import *



More information about the Bf-extensions-cvs mailing list