diff --git a/src/python/jw/pkg/cmds/projects/CmdListRepos.py b/src/python/jw/pkg/cmds/projects/CmdListRepos.py index ff323691..79356ca5 100644 --- a/src/python/jw/pkg/cmds/projects/CmdListRepos.py +++ b/src/python/jw/pkg/cmds/projects/CmdListRepos.py @@ -39,7 +39,8 @@ class CmdListRepos(Cmd): # export if password is not None: ssh.set_password(password) cmd = ['/opt/jw-pkg/bin/git-srv-admin.sh', '-u', args.from_owner, '-j', 'list-personal-projects'] - print((await ssh.run(cmd)).decode().stdout) + result = await ssh.run(cmd) + print('\n'.join(result.stdout.decode().splitlines())) return case 'https': cmd_input = None