From bc2f7547cc14902d88ab21dbad082debd6087106 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Tue, 22 Feb 2011 21:45:54 +0200 Subject: [PATCH] Update with __all__ keyword. --- openlp/plugins/remotes/lib/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/openlp/plugins/remotes/lib/__init__.py b/openlp/plugins/remotes/lib/__init__.py index b6f952242..2dddfabe9 100644 --- a/openlp/plugins/remotes/lib/__init__.py +++ b/openlp/plugins/remotes/lib/__init__.py @@ -25,4 +25,6 @@ ############################################################################### from remotetab import RemoteTab -from httpserver import HttpServer \ No newline at end of file +from httpserver import HttpServer + +__all__ = [u'RemoteTab', u'HttpServer']