Public bug reported:

Binary package hint: conduit

Just a typo in exception handling code for GoogleModule. Proposed fix
attached.

Configuration:
# uname -a
Linux lappie 2.6.24-19-generic #1 SMP Wed Jun 4 16:35:01 UTC 2008 i686 GNU/Linux

# grep conduit /etc/apt/sources.list
deb http://ppa.launchpad.net/conduit/ubuntu hardy main

# dpkg -l conduit | grep conduit
ii  conduit                                    0.3.11.2-0ubuntu0~ppa3           
                  synchronization tool for GNOME

Steps to reproduce:
# dpkg-reconfigure conduit
WARNING: compile error while trying to byte-compile 
/usr/lib/conduit/modules/GoogleModule/gdata/apps/service.py:   File 
"/usr/lib/conduit/modules/GoogleModule/gdata/apps/service.py", line 27
    except Import Error:
                      ^
SyntaxError: invalid syntax

WARNING: compile error while trying to byte-compile 
/usr/lib/conduit/modules/GoogleModule/gdata/apps/service.py:   File 
"/usr/lib/conduit/modules/GoogleModule/gdata/apps/service.py", line 27
    except Import Error:
                      ^
SyntaxError: invalid syntax

Proposed fix:
# diff -u service.py.orig service.py
--- service.py.orig     2008-06-19 09:42:49.000000000 +0200
+++ service.py  2008-06-19 09:42:14.000000000 +0200
@@ -24,7 +24,7 @@
   except ImportError:
     try:
       from xml.etree import ElementTree
-    except Import Error:
+    except ImportError:
         from elementtree import ElementTree
 import urllib
 import gdata

Fix verification:
repeating dpkg-reconfigure shows no errors anymore

** Affects: conduit (Ubuntu)
     Importance: Undecided
         Status: New

-- 
Python syntax error in GoogleModule service.py during package installation
https://bugs.launchpad.net/bugs/241202
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to