From bc4391f9bfa9a27a1545e9666668f15787af0766 Mon Sep 17 00:00:00 2001 From: Laurent Lasudry Date: Wed, 26 Sep 2018 10:29:16 +0200 Subject: [PATCH] Add missing __init__ content --- src/pfwbged/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/pfwbged/__init__.py b/src/pfwbged/__init__.py index e69de29..f48ad10 100644 --- a/src/pfwbged/__init__.py +++ b/src/pfwbged/__init__.py @@ -0,0 +1,6 @@ +# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages +try: + __import__('pkg_resources').declare_namespace(__name__) +except ImportError: + from pkgutil import extend_path + __path__ = extend_path(__path__, __name__)