Comment 3 for bug 96433

Revision history for this message
Sebastien Estienne (sebest) wrote :

could you try the following patch:
edit file /usr/share/service-discovery-applet/plugins/nautilus.py line 46

Index: nautilus.py.in
===================================================================
--- nautilus.py.in (révision 136)
+++ nautilus.py.in (copie de travail)
@@ -43,7 +43,10 @@
             url = build_url("dav",address,port, path, username,password)
         if stype == "_webdavs._tcp":
             url = build_url("davs",address,port, path, username,password)
- gnome.url_show(url)
+ try:
+ gnome.url_show(url)
+ except GError, e:
+ error_msg(e)

 def load():