a724c39
diff -ur a/camerac/__init__.py b/camerac/__init__.py
a724c39
--- a/camerac/__init__.py	2009-04-28 07:19:47.000000000 +0200
a724c39
+++ b/camerac/__init__.py	2010-02-18 18:07:43.000000000 +0100
a724c39
@@ -2,20 +2,4 @@
a724c39
 import sys
a724c39
 import logging
a724c39
 
a724c39
-_sys_path = sys.path
a724c39
-_root_path = os.path.dirname(__file__)
a724c39
-
a724c39
-for i in os.listdir(_root_path):
a724c39
-    path = os.path.join(_root_path, i)
a724c39
-    if (os.path.isdir(path)):
a724c39
-        sys.path = _sys_path + [os.path.join('.', path)]
a724c39
-        try:
a724c39
-            from camera import *
a724c39
-            logging.debug('use %s blobs' % path)
a724c39
-            _sys_path = None
a724c39
-            break
a724c39
-        except Exception, e:
a724c39
-            logging.debug('skip %s blobs: %s' % (path, e))
a724c39
-
a724c39
-if _sys_path:
a724c39
-    raise('cannot find proper binary blobs')
a724c39
+from camera import *