Skip to content

Commit

Permalink
[release-v1.6][ckanext/templates]: __init__ files needed for all dirs…
Browse files Browse the repository at this point in the history
… that get distributed.
  • Loading branch information
David Read committed Feb 10, 2012
1 parent 33b1d1d commit ff154e4
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ckanext/stats/public/__init__.py
@@ -0,0 +1,7 @@
# this is a namespace package
try:
import pkg_resources
pkg_resources.declare_namespace(__name__)
except ImportError:
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)
7 changes: 7 additions & 0 deletions ckanext/stats/public/ckanext/__init__.py
@@ -0,0 +1,7 @@
# this is a namespace package
try:
import pkg_resources
pkg_resources.declare_namespace(__name__)
except ImportError:
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)
7 changes: 7 additions & 0 deletions ckanext/stats/public/ckanext/stats/__init__.py
@@ -0,0 +1,7 @@
# this is a namespace package
try:
import pkg_resources
pkg_resources.declare_namespace(__name__)
except ImportError:
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)
Empty file.
Empty file.
Empty file.

0 comments on commit ff154e4

Please sign in to comment.