[plotting] py3 compatibility, is it right, that relative imports always have to be in the format from . import <.>

This commit is contained in:
mzwiessele 2015-09-30 17:07:24 +01:00
parent 07c0284666
commit 3815658cc4
3 changed files with 3 additions and 3 deletions

View file

@ -1 +1 @@
import controllers from .import controllers

View file

@ -1 +1 @@
import axis_event_controller, imshow_controller from . import axis_event_controller, imshow_controller

View file

@ -3,7 +3,7 @@ Created on 24 Jul 2013
@author: maxz @author: maxz
''' '''
from axis_event_controller import BufferedAxisChangedController from .axis_event_controller import BufferedAxisChangedController
import itertools import itertools
import numpy import numpy