*** This bug is a duplicate of bug 569714 ***
    https://bugs.launchpad.net/bugs/569714

In Ubuntu LUCID LYNX the problem with "Could not import tiling module!"
seems to be a fault caused by the wrong version of python (seems that
this module is present under older version of python and lucid has
2.6.5).

Read here:
https://bugzilla.redhat.com/show_bug.cgi?format=multiple&id=498268.

Solution with LUCID LYNX:

Download the sources of package gdesklets and apply the following patch,
then rebuild the package and install it.

--- gDesklets-0.36.1/utils/ErrorFormatter.py    2008-03-19 16:00:59.000000000 
-0700
+++ gDesklets-0.36.1.new/utils/ErrorFormatter.py        2009-05-12 
22:32:47.000000000 -0700
@@ -113,9 +113,9 @@
 # give us an absolute path.
 #
 _old_imp = __import__
-def _new_imp(name, globs = {}, locls = {}, fromlist = []):
+def _new_imp(*args, **kwargs):
 
-    module = _old_imp(name, globs, locls, fromlist)
+    module = _old_imp(*args, **kwargs)
     # builtin modules have no "__file__" attribute, so we have to check for it
     if (module):
         if (hasattr(module, "__file__")):

** Bug watch added: Red Hat Bugzilla #498268
   https://bugzilla.redhat.com/show_bug.cgi?id=498268

-- 
gdesklets broken since last update
https://bugs.launchpad.net/bugs/544840
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to