summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastien Estienne <sebastien.estienne@gmail.com>2005-11-18 19:19:30 +0000
committerSebastien Estienne <sebastien.estienne@gmail.com>2005-11-18 19:19:30 +0000
commit6589204e2c6d0086620c2197dd3587e403ba8756 (patch)
tree84b02bc9bd464c5d476e1bc25d3a3874329c9922
parent1011f7c70dcd9b3d78898e40e6bc91c6983ce97e (diff)
* 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
-rwxr-xr-xactions/services/__init__.py.in4
1 files 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):