From 522cfd1e218ac568c7763b6c3ea2b84e3aeddfd6 Mon Sep 17 00:00:00 2001 From: Gauvain Pocentek Date: Wed, 3 Feb 2016 20:34:42 +0100 Subject: CLI: fix {all,owned,search} project listing --- gitlab/cli.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'gitlab/cli.py') diff --git a/gitlab/cli.py b/gitlab/cli.py index 838bf07..cf1c6c0 100644 --- a/gitlab/cli.py +++ b/gitlab/cli.py @@ -337,6 +337,7 @@ def main(): for o in l: o.display(verbose) + print("") elif action == OWNED: if cls != gitlab.Project: @@ -344,6 +345,7 @@ def main(): for o in do_project_owned(gl, what, args): o.display(verbose) + print("") elif action == ALL: if cls != gitlab.Project: @@ -351,5 +353,6 @@ def main(): for o in do_project_all(gl, what, args): o.display(verbose) + print("") sys.exit(0) -- cgit v1.2.1