From 5fded01d006538bd30542726b6e0f0fd8cff8ffd Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Tue, 7 Apr 2026 14:08:33 +0200 Subject: [PATCH] cmds.projects.CmdListRepos: Init SSHClient with app opts Use the global --verbose and --interactive command-line options as defaults for constructing a SSHClient instance for use with listing repos over SSH. Signed-off-by: Jan Lindemann --- src/python/jw/pkg/cmds/projects/CmdListRepos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/jw/pkg/cmds/projects/CmdListRepos.py b/src/python/jw/pkg/cmds/projects/CmdListRepos.py index c82b024a..2b6c0b88 100644 --- a/src/python/jw/pkg/cmds/projects/CmdListRepos.py +++ b/src/python/jw/pkg/cmds/projects/CmdListRepos.py @@ -33,7 +33,7 @@ class CmdListRepos(Cmd): # export case 'ssh': if re.match(r'ssh://.*git\.janware\.com/', args.base_url): from jw.pkg.lib.ec.SSHClient import ssh_client - ssh = ssh_client(args.base_url) + ssh = ssh_client(args.base_url, interactive=self.app.interactive, verbose_default=self.app.verbose) if username is not None: ssh.set_username(username) if password is not None: