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[:]