Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/fill/__init__.py
diff options
context:
space:
mode:
authorGonzalo Odiard <godiard@gmail.com>2012-10-26 19:33:44 (GMT)
committer Gonzalo Odiard <godiard@gmail.com>2012-10-30 13:14:49 (GMT)
commit929a4f333b4a41dd96598afc8bae3effd0cc9de9 (patch)
tree4d7c9fff3206e2d4033c3db5214af867540eda59 /fill/__init__.py
parent8d5543a256a30df6eccefd1d3cf823b26b281600 (diff)
Fix c bucket implementation - SL #4073
The c implementation is reworked to process a array with the surface data instead of the GdkImage. It returns a list instead of a array The c do not depends on gtk anymore. Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
Diffstat (limited to 'fill/__init__.py')
-rw-r--r--fill/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/fill/__init__.py b/fill/__init__.py
index 34b4d37..92b2eaf 100644
--- a/fill/__init__.py
+++ b/fill/__init__.py
@@ -11,11 +11,11 @@ for i in os.listdir(_root_path):
sys.path = _sys_path + [os.path.join('.', path)]
try:
from _fill import *
- logging.debug('use %s blobs' % path)
+ logging.error('use %s blobs' % path)
_sys_path = None
break
except Exception, e:
- logging.debug('skip %s blobs: %s' % (path, e))
+ logging.error('skip %s blobs: %s' % (path, e))
if _sys_path:
raise('cannot find proper binary blobs')