From 4b6ee2aa2d43d66cb6fc20a69b1d46da9358e73a Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Sat, 12 Apr 2014 22:22:31 +0200 Subject: [PATCH] Fix an import issue --- openlp/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/openlp/__init__.py b/openlp/__init__.py index bf7cbc680..98e847979 100644 --- a/openlp/__init__.py +++ b/openlp/__init__.py @@ -30,7 +30,6 @@ The :mod:`openlp` module contains all the project produced OpenLP functionality """ -import core -import plugins +from openlp import core, plugins __all__ = ['core', 'plugins']