From 6589204e2c6d0086620c2197dd3587e403ba8756 Mon Sep 17 00:00:00 2001 From: Sebastien Estienne Date: Fri, 18 Nov 2005 19:19:30 +0000 Subject: * fixed wrong nautilus uri for sftp and davs git-svn-id: file:///home/lennart/svn/public/service-discovery-applet/trunk@77 3be567f1-68ff-0310-b24a-ad7cc433fd2f --- actions/services/__init__.py.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/services/__init__.py.in b/actions/services/__init__.py.in index c55adfe..fb6d824 100755 --- a/actions/services/__init__.py.in +++ b/actions/services/__init__.py.in @@ -97,7 +97,7 @@ def _webdavs_tcp(name, hostname, address, port, txts): path = get_txt_value(txts,"path") username = get_txt_value(txts,"u") password = get_txt_value(txts,"p") - url = build_url("dav",address,port, path, username,password) + url = build_url("davs",address,port, path, username,password) gnome.url_show(url) def _ftp_tcp(name, hostname, address, port, txts): @@ -111,7 +111,7 @@ def _sftpssh_tcp(name, hostname, address, port, txts): path = get_txt_value(txts,"path") username = get_txt_value(txts,"u") password = get_txt_value(txts,"p") - url = build_url("ftp",address,port, path, username,password) + url = build_url("sftp",address,port, path, username,password) gnome.url_show(url) def enter_callback(widget, win): -- cgit