From dd13e8ad21b692fb237a348fa9296cec0966768c Mon Sep 17 00:00:00 2001 From: mfrasca <> Date: Mon, 16 Oct 2006 08:24:32 +0000 Subject: [PATCH] sorry: order of import is relevant. importing * from pywmhelpers hides the previous imports from pywmgeneral. --- wmdocklib/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wmdocklib/__init__.py b/wmdocklib/__init__.py index 967b466..ca4fe51 100644 --- a/wmdocklib/__init__.py +++ b/wmdocklib/__init__.py @@ -6,7 +6,7 @@ wmgeneral.c, but some new functions are added too. to get help about a contained package, try: help(wmdocklib.) """ -from pywmhelpers import * from pywmgeneral import * +from pywmhelpers import * __all__ = []