From 3408d5807890579e3d799b08e776e399234c918d Mon Sep 17 00:00:00 2001 From: Chuck SmileyRekiere Date: Tue, 29 Jun 2021 14:09:21 -0600 Subject: [PATCH] cv_test_reports.py : bug fix Signed-off-by: Chuck SmileyRekiere --- py-json/cv_test_reports.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-json/cv_test_reports.py b/py-json/cv_test_reports.py index 2a6a8df6..2b5fd918 100644 --- a/py-json/cv_test_reports.py +++ b/py-json/cv_test_reports.py @@ -12,6 +12,6 @@ class lanforge_reports: ssh.connect(hostname=hostname, username=username, password=password, port=port, allow_agent=False, look_for_keys=False) with SCPClient(ssh.get_transport()) as scp: - scp.get(remote_path=report_location, local_lf_report_dir=local_lf_report_dir, recursive=True) + scp.get(remote_path=report_location, report_dir=local_lf_report_dir, recursive=True) scp.close()