According to http://askubuntu.com/questions/203140/ubuntu-one-ipcerror-error, different python-twisted version isn't good, so maybe: http://packages.ubuntu.com/quantal/python-twisted <- 12.2.0-1, OK http://packages.debian.org/sid/python-twisted <- 12.0.0-1, not OK
I have splitted former part of report as 1077785, so this can be closed as invalid... ** Description changed: - /usr/lib/python2.7/dist-packages/ubuntuone-client/ubuntuone/platform/sync_menu/linux.py - --- - try: - from gi.repository import ( - Dbusmenu, - SyncMenu, - ) - use_syncmenu = True - except: - use_syncmenu = False - --- - If this fails, according to - > UbuntuOneSyncMenu = UbuntuOneSyncMenuLinux if use_syncmenu else DummySyncMenu - it will fallback to DummySyncMenu. but - > class TransfersMenu(Dbusmenu.Menuitem): - will prevent it from loading. - --- - NameError: name 'Dbusmenu' is not defined - --- - which will result in IPCError. - Changing it to - > class TransfersMenu(object): - worked as a workaround. + (snip) By the way I'm curious in another point. I have gir1.2-syncmenu-0.1 and gir1.2-dbusmenu-0.4. So the import shouldn't fail. In python console, it is working. But in script: --- - File "/usr/lib/python2.7/dist-packages/gi/__init__.py", line 23, in <module> - from ._gi import _API, Repository + File "/usr/lib/python2.7/dist-packages/gi/__init__.py", line 23, in <module> + from ._gi import _API, Repository ImportError: cannot import name _API --- So... the depending files of /usr/lib/python2.7/dist-packages/ubuntuone-client/ubuntuone/platform/sync_menu/linux.py are somehow broken? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1077711 Title: ubuntuone-client emits IPCError To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ubuntuone-client/+bug/1077711/+subscriptions -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
