Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/olpcgames/data/__init__.py
diff options
context:
space:
mode:
authorPootle daemon <pootle@pootle.sugarlabs.org>2012-10-24 04:31:32 (GMT)
committer Pootle daemon <pootle@pootle.sugarlabs.org>2012-10-24 04:31:32 (GMT)
commit7270747ee5ccc68e7dadbd6cd54a3fc2431fe7ea (patch)
treebf8b772d9461f9c9c882ac4145f03f8de8b42340 /olpcgames/data/__init__.py
parentf30384403e97c4c13b81b81280be6a59481a59c0 (diff)
parent5aa22891b07153d2b1df07ba3621d8d22e9ae252 (diff)
Merge branch 'master' of git.sugarlabs.org:bridge/mainline
Diffstat (limited to 'olpcgames/data/__init__.py')
-rwxr-xr-xolpcgames/data/__init__.py36
1 files changed, 0 insertions, 36 deletions
diff --git a/olpcgames/data/__init__.py b/olpcgames/data/__init__.py
deleted file mode 100755
index 8510186..0000000
--- a/olpcgames/data/__init__.py
+++ /dev/null
@@ -1,36 +0,0 @@
-"""Design-time __init__.py for resourcepackage
-
-This is the scanning version of __init__.py for your
-resource modules. You replace it with a blank or doc-only
-init when ready to release.
-"""
-try:
- __file__
-except NameError:
- pass
-else:
- import os
- if os.path.splitext(os.path.basename( __file__ ))[0] == "__init__":
- try:
- from resourcepackage import package, defaultgenerators
- generators = defaultgenerators.generators.copy()
-
- ### CUSTOMISATION POINT
- ## import specialised generators here, such as for wxPython
- #from resourcepackage import wxgenerators
- #generators.update( wxgenerators.generators )
- except ImportError:
- pass
- else:
- package = package.Package(
- packageName = __name__,
- directory = os.path.dirname( os.path.abspath(__file__) ),
- generators = generators,
- )
- package.scan(
- ### CUSTOMISATION POINT
- ## force true -> always re-loads from external files, otherwise
- ## only reloads if the file is newer than the generated .py file.
- # force = 1,
- )
-