From 59f07a03eef0839b1d7ddc71700dd996044f7371 Mon Sep 17 00:00:00 2001 From: Luke Campagnola Date: Fri, 22 Nov 2013 20:09:59 -0500 Subject: [PATCH] python3 fix --- pyqtgraph/exporters/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyqtgraph/exporters/__init__.py b/pyqtgraph/exporters/__init__.py index 99bea53a..e2a81bc2 100644 --- a/pyqtgraph/exporters/__init__.py +++ b/pyqtgraph/exporters/__init__.py @@ -11,7 +11,7 @@ #if hasattr(mod, k): #Exporters.append(getattr(mod, k)) -import Exporter +from .Exporter import Exporter from .ImageExporter import * from .SVGExporter import * from .Matplotlib import * @@ -20,5 +20,5 @@ from .PrintExporter import * def listExporters(): - return Exporter.Exporter.Exporters[:] + return Exporter.Exporters[:]