Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TamTamSynthLab.activity/common/Util/Clooper/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'TamTamSynthLab.activity/common/Util/Clooper/__init__.py')
-rw-r--r--TamTamSynthLab.activity/common/Util/Clooper/__init__.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/TamTamSynthLab.activity/common/Util/Clooper/__init__.py b/TamTamSynthLab.activity/common/Util/Clooper/__init__.py
deleted file mode 100644
index 363fc88..0000000
--- a/TamTamSynthLab.activity/common/Util/Clooper/__init__.py
+++ /dev/null
@@ -1,21 +0,0 @@
-import os
-import sys
-import logging
-
-_sys_path = sys.path
-_root_path = os.path.dirname(__file__)
-
-for i in os.listdir(_root_path):
- path = os.path.join(_root_path, i)
- if (os.path.isdir(path)):
- sys.path = _sys_path + [os.path.join('.', path)]
- try:
- from aclient import *
- logging.debug('use %s blobs' % path)
- _sys_path = None
- break
- except Exception, e:
- logging.debug('skip %s blobs: %s' % (path, e))
-
-if _sys_path:
- raise('cannot find proper binary blobs')