summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-04-17 13:00:36 +0200
committerGitHub <noreply@github.com>2021-04-17 13:00:36 +0200
commit728eb9077123d67e12defe421049da5f84847608 (patch)
treebc3e3a56cf1eae23388a34c957b0e4191ce6a306 /python
parent9b7a4861b35109c47f4b1bc1d688dff928c6f023 (diff)
parentfb0883930ab8b95f1b4ab7f30748e3c6b9c4ff25 (diff)
downloadvyos-1x-728eb9077123d67e12defe421049da5f84847608.tar.gz
vyos-1x-728eb9077123d67e12defe421049da5f84847608.zip
Merge pull request #813 from erkin/equuleus
util: T3356: Fix password variables
Diffstat (limited to 'python')
-rw-r--r--python/vyos/remote.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/vyos/remote.py b/python/vyos/remote.py
index 18e772cc8..ef103f707 100644
--- a/python/vyos/remote.py
+++ b/python/vyos/remote.py
@@ -79,7 +79,7 @@ def download(local_path, urlstring):
username = url.username if url.username else 'anonymous'
download_ftp(local_path, url.hostname, url.path, username, url.password)
elif url.scheme == 'sftp' or url.scheme == 'scp':
- download_sftp(local_path, url.hostname, url.path, url.username, password)
+ download_sftp(local_path, url.hostname, url.path, url.username, url.password)
elif url.scheme == 'tftp':
download_tftp(local_path, url.hostname, url.path)
else:
@@ -94,7 +94,7 @@ def upload(local_path, urlstring):
username = url.username if url.username else 'anonymous'
upload_ftp(local_path, url.hostname, url.path, username, url.password)
elif url.scheme == 'sftp' or url.scheme == 'scp':
- upload_sftp(local_path, url.hostname, url.path, url.username, password)
+ upload_sftp(local_path, url.hostname, url.path, url.username, url.password)
elif url.scheme == 'tftp':
upload_tftp(local_path, url.hostname, url.path)
else: