summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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):