Blob Blame History Raw
diff -ur a/camerac/__init__.py b/camerac/__init__.py
--- a/camerac/__init__.py	2009-04-28 07:19:47.000000000 +0200
+++ b/camerac/__init__.py	2010-02-18 18:07:43.000000000 +0100
@@ -2,20 +2,4 @@
 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 camera 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')
+from camera import *